Skip to content

Commit

Permalink
fix: make sure path to input test data is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Dec 10, 2024
1 parent 178f1b6 commit 9204928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2940,7 +2940,7 @@ def test_fittedsipwcs_singular():
# This test is in response to a case in imsim where the FittedSIPWCS could hit a
# singular matrix error in the solver.

data = np.load('input/singular.npz')
data = np.load(os.path.join(os.path.dirname(__file__), 'input/singular.npz'))
x = data['x']
y = data['y']
ra = data['ra']
Expand Down

0 comments on commit 9204928

Please sign in to comment.