Skip to content

Commit 194296d

Browse files
committed
Fix test assertion for paginated results
1 parent d0fe5e3 commit 194296d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/remote/query_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ func TestListPagination(t *testing.T) {
9898
actual := len(objs)
9999
if int(totalItemsInList) != actual {
100100
t.Logf("expected items to be %d but found %d. Change this to Fatal when https://github.com/kubernetes/kubernetes/issues/107277 is fixed", totalItemsInList, actual)
101-
// t.Fatalf("expected items to be %d but found %d", totalItemsInList, actual)
101+
t.Fatalf("expected items to be %d but found %d", totalItemsInList, actual)
102102
}
103103
}

0 commit comments

Comments
 (0)