Skip to content

Commit 11336ab

Browse files
authored
Fix module import in tests
1 parent ce862d8 commit 11336ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/spectrum/test_mismatch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ def test_spectral_factor_polo(module_type,expected):
317317
aois = np.array([46.0, 76.0, 74.0, 28.0, 24.0, 55.0])
318318
alb=np.array([0.15, 0.2, 0.3, 0.18, 0.32, 0.26])
319319

320-
out=spectral_factor_polo(pws,ams,aods,aois,altitude,module_type=module_type,albedo=alb)
320+
out = spectrum.spectral_factor_polo(
321+
pws,ams,aods,aois,altitude,module_type=module_type,albedo=alb)
321322
assert np.allclose(expected, out, atol=1e-8)
322323

0 commit comments

Comments
 (0)