Skip to content
Snippets Groups Projects
Commit 101d3a50 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Fix test (target A range)

parent cd59adb9
No related branches found
No related tags found
No related merge requests found
Pipeline #19498 passed
......@@ -48,8 +48,8 @@ class TestJobcard(unittest.TestCase):
class TestNeutrinoJobcard(unittest.TestCase):
def setUp(self):
self.test_fluxfile = TemporaryFile()
self.test_Z = np.random.randint(0, 100)
self.test_A = np.random.randint(0, 100)
self.test_Z = np.random.randint(1, 100)
self.test_A = np.random.randint(self.test_Z, 100)
self.test_energy_min = np.random.uniform(0.0, 100.0)
self.test_energy_max = np.random.uniform(self.test_energy_min, 100.0)
self.photon_propagation_flag = np.random.choice([True, False])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment