Skip to content

Commit

Permalink
Fix deprecated scipy import.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Jan 18, 2024
1 parent 6770999 commit 19b87e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class CurveTestCase(lsst.utils.tests.TestCase):

def setUp(self):
self.wavelength = np.linspace(3000, 5000, 150)*u.angstrom
self.efficiency = signal.gaussian(len(self.wavelength), std=100)*u.percent
self.efficiency = signal.windows.gaussian(len(self.wavelength), std=100)*u.percent
self.metadata = dict([('MODE', 'AMP'), ('TYPE', 'QE'), ('CALIBDATE', '1970-01-01T00:00:00'),
('INSTRUME', 'ts8'), ('OBSTYPE', 'qe_curve'), ('DETECTOR', 99),
('DATE', '2019-09-27T22:15:13.518320'), ('CALIB_CREATION_DATE', '2019-09-27'),
Expand Down

0 comments on commit 19b87e8

Please sign in to comment.