diff options
author | Nadia Dencheva <nadia.dencheva@gmail.com> | 2016-08-10 17:39:25 -0400 |
---|---|---|
committer | Nadia Dencheva <nadia.dencheva@gmail.com> | 2016-08-10 17:39:25 -0400 |
commit | 40b2c248505f2dbf707912b12d4fac3d4e5f25f0 (patch) | |
tree | 9e4026d2e4f524cdfb3c9bac148baf4086db33a2 /stwcs/tests/test_headerlet.py | |
parent | af56b9ad582ac0fe25ef7e941fbec4309906f7f5 (diff) | |
download | stwcs_hcf-40b2c248505f2dbf707912b12d4fac3d4e5f25f0.tar.gz |
fix failing tests
Diffstat (limited to 'stwcs/tests/test_headerlet.py')
-rw-r--r-- | stwcs/tests/test_headerlet.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/stwcs/tests/test_headerlet.py b/stwcs/tests/test_headerlet.py index 48fb470..f4fa050 100644 --- a/stwcs/tests/test_headerlet.py +++ b/stwcs/tests/test_headerlet.py @@ -1,9 +1,11 @@ +from __future__ import absolute_import, division, print_function + import shutil import os from astropy.io import fits -from stwcs import updatewcs -from stwcs.wcsutil import headerlet, wcsdiff -from stwcs.wcsutil import HSTWCS +from .. import updatewcs +from ..wcsutil import headerlet, wcsdiff +from ..wcsutil import HSTWCS import numpy as np from numpy.testing import utils from nose.tools import * |