Skip to content

Commit 6918d0d

Browse files
committed
fix off by one in test
We really need CI...
1 parent 9dfce88 commit 6918d0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func TestQuery(t *testing.T) {
103103
}
104104

105105
require.NoError(t, rows.Err(), "rows.Err()")
106-
require.Equal(t, 2, index+1, "row count")
106+
require.Equal(t, 3, index+1, "row count")
107107
}
108108

109109
func TestOpen(t *testing.T) {

0 commit comments

Comments
 (0)