Skip to content
Snippets Groups Projects
Commit 6dc69a58 authored by Mads M. Pedersen's avatar Mads M. Pedersen Committed by Mads M. Pedersen
Browse files

removed tree print in tests

parent 25bc4550
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ class Test_gsdf(unittest.TestCase):
def test_gtsdf_stat(self):
time, data, info = gtsdf.load(tfp+'test.hdf5')
print (data.shape)
fn = tmp_path + "test_stat.hdf5"
gtsdf.save(fn, data, time=time, **info)
gtsdf.add_statistic(fn)
......
......@@ -19,14 +19,10 @@ class TestUnixTime(unittest.TestCase):
def test_to_unix(self):
print (np.array([5]))
self.assertEqual(to_unix(datetime.datetime(2016, 2, 2, 13, 6, 25)), 1454418385)
self.assertEqual(to_unix([datetime.datetime(2016, 2, 2, 13, 6, 25),datetime.datetime(2016, 2, 2, 13, 6, 26)]), [1454418385,1454418386])
self.assertNotEqual(to_unix(datetime.datetime(2016, 2, 2, 13, 6, 26)), 1454418385)
self.assertRaises(Exception, to_unix,1)
def test_from_unix(self):
......
......@@ -62,7 +62,6 @@ class TestAtTimeFile(unittest.TestCase):
def test_rotor_name_null(self):
atfile = AtTimeFile(self.testfilepath + "at_time/test_rotor_name_null.dat", bladetip_radius=20.501) # load file
print (atfile.radius_s())
if __name__ == "__main__":
......
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