From 74f6ea94eae45c8fb89a23cc94802e57ce279a84 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 19 Jan 2022 00:51:09 +0800 Subject: ref #1054, breaking change for the column and row's iterator This removed 3 exported functions: `TotalCols`, `CurrentCol` and `CurrentRow` --- rows_test.go | 1 - 1 file changed, 1 deletion(-) (limited to 'rows_test.go') diff --git a/rows_test.go b/rows_test.go index 0ac9271..0d2ca23 100644 --- a/rows_test.go +++ b/rows_test.go @@ -74,7 +74,6 @@ func TestRowsIterator(t *testing.T) { for rows.Next() { rowCount++ - assert.Equal(t, rowCount, rows.CurrentRow()) require.True(t, rowCount <= expectedNumRow, "rowCount is greater than expected") } assert.Equal(t, expectedNumRow, rowCount) -- cgit v1.2.1