Skip to content

Commit 74562ba

Browse files
authored
Merge pull request #142 from migueldvb/test_filt_str
Fix value of spectral flux density in remote test
2 parents 79bd9b3 + 73d24d4 commit 74562ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbpy/spectroscopy/tests/test_sources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_filt_str(self):
167167
f = u.Quantity(np.ones(len(w)), 'W/(m2 um)')
168168
s = Star.from_array(w, f)
169169
fluxd = s.filt('johnson_v', unit='W/(m2 um)')[1]
170-
assert np.isclose(fluxd.value, 1)
170+
assert np.isclose(fluxd.value, 0.1)
171171

172172
def test_filt_vegamag(self):
173173
w = u.Quantity(np.linspace(0.3, 1.0), 'um')

0 commit comments

Comments
 (0)