Skip to content
Snippets Groups Projects
Commit 216e0eb7 authored by Stefan Reck's avatar Stefan Reck
Browse files

fix test

parent 31ec2106
No related branches found
No related tags found
1 merge request!23Jagged graph
......@@ -58,7 +58,9 @@ class TestFileConcatenator(TestCase):
def test_get_cumu_rows(self):
fc = conc.FileConcatenator(self.dummy_files)
np.testing.assert_array_equal(fc.cumu_rows, [0, 10, 25])
self.assertDictEqual(
fc.cumu_rows, {'numpy_array': [0, 10, 25], 'rec_array': [0, 10, 25]}
)
def test_concatenate_used_files(self):
fc = conc.FileConcatenator(self.dummy_files)
......
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