Skip to content

Commit

Permalink
Fix issue in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
gmyr committed Apr 15, 2021
1 parent e258854 commit 6aa69c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_iterators.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,5 +961,5 @@ def test_boundary_key(self):
with self.subTest(case_name):
result = list(it)
for batch in result:
boundary_keys = (self.boundary_key_fn(item) for item in batch)
boundary_keys = [self.boundary_key_fn(item) for item in batch]
self.assertTrue(all(boundary_keys) or not any(boundary_keys))

0 comments on commit 6aa69c1

Please sign in to comment.