Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacspitzer committed Jul 22, 2024
1 parent bcaaae4 commit f10bd26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysynphot/test/test_observation.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_check_overlap(self):
assert pysynphot.observation.check_overlap(sp2, sp1) == 'partial'

# Check for no overlap with 2 non-analytic spectra
w2 = np.array(5000., 6000., 7000.)
w2 = np.array([5000., 6000., 7000.])
sp2 = ArraySourceSpectrum(w2, f)
assert pysynphot.observation.check_overlap(sp1, sp2) == 'none'

Expand Down

0 comments on commit f10bd26

Please sign in to comment.