Tests updated
esbo_ds/ESBO-ETC/pipeline/head This commit looks good Details

This commit is contained in:
Lukas Klass 2020-07-21 14:51:37 +02:00
parent 0b88531ac7
commit 9bf7d23bcc
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@ import numpy as np
import astropy.units as u
class TestBlackBodyTarget(TestCase):
class TestCosmicBackground(TestCase):
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)
def test_calcSignal(self):