summaryrefslogtreecommitdiff
path: root/lib/test/benchmarks.py
diff options
context:
space:
mode:
authorlim <lim@stsci.edu>2012-05-21 14:19:51 -0400
committerlim <lim@stsci.edu>2012-05-21 14:19:51 -0400
commit8e6b72470bd7ce8a709b2538e4cd2becd16154ae (patch)
tree75f5c0faae2472ea93ea81fbc2b63ccf3abaa0d1 /lib/test/benchmarks.py
parent41959ca9c7056f27214c53fba2650402e84117ef (diff)
downloadstsci.sphere-8e6b72470bd7ce8a709b2538e4cd2becd16154ae.tar.gz
lim fixed tests that failed because of image de-compression on SVN
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/branches/sphere@16923 fe389314-cf27-0410-b35b-8c050e845b92 Former-commit-id: 4bf54e5d84f6f6984ce3ad70ed05b1e048de6f02
Diffstat (limited to 'lib/test/benchmarks.py')
-rw-r--r--lib/test/benchmarks.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/test/benchmarks.py b/lib/test/benchmarks.py
index 9711d7b..91ef8db 100644
--- a/lib/test/benchmarks.py
+++ b/lib/test/benchmarks.py
@@ -5,14 +5,14 @@ import time
import numpy as np
from sphere import *
from test_util import *
+from test_shared import resolve_imagename
def point_in_poly_lots():
- poly1 = SphericalPolygon.from_wcs(
- os.path.join(ROOT_DIR, '1904-66_TAN.fits'), 64, crval=[0, 87])
- poly2 = SphericalPolygon.from_wcs(
- os.path.join(ROOT_DIR, '1904-66_TAN.fits'), 64, crval=[20, 89])
- poly3 = SphericalPolygon.from_wcs(
- os.path.join(ROOT_DIR, '1904-66_TAN.fits'), 64, crval=[180, 89])
+ image_name = resolve_imagename(ROOT_DIR,'1904-66_TAN.fits')
+
+ poly1 = SphericalPolygon.from_wcs(image_name, 64, crval=[0, 87])
+ poly2 = SphericalPolygon.from_wcs(image_name, 64, crval=[20, 89])
+ poly3 = SphericalPolygon.from_wcs(image_name, 64, crval=[180, 89])
points = get_point_set(density=25)