Skip to content

Commit

Permalink
Merge pull request #359 from simontorres/rename_blackbody_model
Browse files Browse the repository at this point in the history
Renamed astropy's model BlackBody1D to BlackBody
  • Loading branch information
Simon Torres authored Aug 12, 2021
2 parents 4d86af6 + beae2bf commit a7a6e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goodman_pipeline/core/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ def test_extraction_moffat(self):
np.testing.assert_array_almost_equal(extracted, self.reference_result_moffat)

def test_extraction_not_implemented_model(self):
spatial_profile = models.BlackBody1D()
spatial_profile = models.BlackBody()
self.assertRaises(NotImplementedError, extraction, ccd=self.fake_image,
target_trace=self.target_trace,
spatial_profile=spatial_profile,
Expand Down Expand Up @@ -2281,7 +2281,7 @@ def test_trace_not_implemented(self):
self.assertRaises(NotImplementedError,
trace,
self.ccd2,
models.BlackBody1D(),
models.BlackBody(),
trace_model,
fitter,
5)
Expand Down

0 comments on commit a7a6e58

Please sign in to comment.