Skip to content
Snippets Groups Projects
Commit f6cee50b authored by Conrad Rosenbrock's avatar Conrad Rosenbrock
Browse files

Typo in assertion for #63 tests.

parent 101e0c91
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ def test_set_card_union(place):
def test_set_card_64bit_integer(place):
place.important_numbers = set([long(1), long(2), long(3)])
assert all(isinstance(i, long) for i in place.important_numbers)
assert all(isinstance(i.value, long) for i in place.important_numbers)
def test_set_card_validation_vertex_property(place):
with pytest.raises(exception.ValidationError):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment