Skip to content

Commit

Permalink
[1.5.x] 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.
Backport of 87854b0 from master.
  • Loading branch information
claudep committed Feb 15, 2013
1 parent 1b54c85 commit 5a803ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/contrib/gis/geos/tests/test_geos.py
Original file line number Diff line number Diff line change
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 5a803ce

Please sign in to comment.