Tests updated
All checks were successful
esbo_ds/ESBO-ETC/pipeline/head This commit looks good

This commit is contained in:
Lukas Klass 2020-07-21 14:51:37 +02:00
parent 0b88531ac7
commit 9bf7d23bcc

View File

@ -4,9 +4,9 @@ import numpy as np
import astropy.units as u import astropy.units as u
class TestBlackBodyTarget(TestCase): class TestCosmicBackground(TestCase):
def setUp(self): def setUp(self):
self.target = BlackBodyTarget(np.arange(100, 105) * u.um) self.target = BlackBodyTarget(np.arange(100, 105) * u.um, mag=0 * u.mag)
self.cosmic = CosmicBackground(self.target) self.cosmic = CosmicBackground(self.target)
def test_calcSignal(self): def test_calcSignal(self):