Skip to content

Commit

Permalink
Correct the float array property test.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhluongo committed Jan 11, 2014
1 parent ab4abdd commit c4f38f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo4django/tests/property_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class FloatArrayNode(models.NodeModel):
eq_(n1.vals, vals)

try:
n2 = IntArrayNode(vals = ('1.12','2.0','-3'))
n2 = FloatArrayNode(vals = ('1.12','2.0','-3'))
n2.save()
except ValidationError:
pass
Expand Down

0 comments on commit c4f38f1

Please sign in to comment.