diff options
author | mdroe <mdroe@stsci.edu> | 2014-06-13 18:04:04 -0400 |
---|---|---|
committer | mdroe <mdroe@stsci.edu> | 2014-06-13 18:04:04 -0400 |
commit | e0211e21f3db0bb27a04490d712dabe04c0fed26 (patch) | |
tree | c48efb390b1baabb99ee349b2980d38b3e7f5bb6 /stsci/sphere/test/test_union.py | |
parent | 99b3bdc918d81c78ed1583804bcfa0d42f123667 (diff) | |
download | stsci.sphere-e0211e21f3db0bb27a04490d712dabe04c0fed26.tar.gz |
More speedups.
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci.sphere/trunk@32541 fe389314-cf27-0410-b35b-8c050e845b92
Former-commit-id: 36e70c1cac043d59089f386a6b6d730c4887fa84
Diffstat (limited to 'stsci/sphere/test/test_union.py')
-rw-r--r-- | stsci/sphere/test/test_union.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stsci/sphere/test/test_union.py b/stsci/sphere/test/test_union.py index 60ea572..a6e5793 100644 --- a/stsci/sphere/test/test_union.py +++ b/stsci/sphere/test/test_union.py @@ -209,7 +209,7 @@ def test_difficult_unions(): poly = polygon.SphericalPolygon(points, inside) polys.append(poly) - polygon.SphericalPolygon.multi_union(polys) + polygon.SphericalPolygon.multi_union(polys[:len(polys)/2]) if __name__ == '__main__': |