Skip to content

Commit d7b5457

Browse files
authored
Fixed test TestResultNextResultSet/context_canceling_and_closing_issues (#1919)
1 parent 4a562ee commit d7b5457

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

internal/query/result_test.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -907,12 +907,8 @@ func TestResultNextResultSet(t *testing.T) {
907907
return func(trace.QueryResultNextPartDoneInfo) {}
908908
},
909909
}))
910-
if err != nil {
911-
t.Skip("test is not actual")
912-
}
913-
914-
_, err = r.nextResultSet(context.Background())
915910
require.ErrorIs(t, err, context.Canceled)
911+
require.Nil(t, r)
916912
})
917913
}
918914

0 commit comments

Comments
 (0)