Skip to content

Commit

Permalink
added test for value not contained in value view
Browse files Browse the repository at this point in the history
  • Loading branch information
eileen-kuehn committed Jul 27, 2018
1 parent 2c1d799 commit 0a8e897
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions graphi_unittests/types_unittests/test_adjacency_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,4 +311,5 @@ def test_value_view_directed(self):
for value in value_view:
self.assertIn(value, [0, 1, 2, 4])
self.assertTrue(value in value_view)
self.assertFalse(3 in value_view)
self.assertEqual(len(nodes) * 2, len(value_view))

0 comments on commit 0a8e897

Please sign in to comment.