Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Sep 28, 2023
1 parent 6d38277 commit b783ace
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_term_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@ def test_wrapper_next(self):
data_obj = VectorData(name='species', description='...', data=self.wrapped_list)
data_obj.extend(['Mus musculus'])
it = iter(data_obj.data)
self.assertEqual(next(it), "Homo sapiens"))
self.assertEqual(next(it), "Mus musculus"))
self.assertEqual(next(it), "Homo sapiens")
self.assertEqual(next(it), "Mus musculus")

0 comments on commit b783ace

Please sign in to comment.