Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramky-Infoblox committed Nov 19, 2024
1 parent 6b9026f commit 00bf524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query/pagination_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestParsePagination(t *testing.T) {
assert.Equal(t, false, p.GetIsTotalSizeNeeded())

// valid pagination with isTotalSizeNeeded=null
p, err = ParsePagination("1000", "100", "ptoken", "null")
_, err = ParsePagination("1000", "100", "ptoken", "null")
if err == nil {
t.Error("unexpected nil error - expected: pagination: is_total_size_needed - invalid syntax")
}
Expand Down

0 comments on commit 00bf524

Please sign in to comment.