Skip to content

Commit

Permalink
Fixed geos test to prevent random failure
Browse files Browse the repository at this point in the history
Points in the test fixtures have 20 as max coordinate.
  • Loading branch information
claudep committed Feb 15, 2013
1 parent 3518549 commit 87854b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/gis/geos/tests/test_geos.py
Expand Up @@ -688,7 +688,7 @@ def test_mutable_geometries(self):
for i in range(len(mp)):
# Creating a random point.
pnt = mp[i]
new = Point(random.randint(1, 100), random.randint(1, 100))
new = Point(random.randint(21, 100), random.randint(21, 100))
# Testing the assignment
mp[i] = new
s = str(new) # what was used for the assignment is still accessible
Expand Down

0 comments on commit 87854b0

Please sign in to comment.