Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Feb 7, 2025
1 parent 2cb6eb9 commit 6c2d04a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def test_access_group_after_io(self):
def test_access_processing(self):
self.nwbfile.create_processing_module('test_mod', 'test_description')
self.assertIsInstance(self.nwbfile.processing['test_mod'], ProcessingModule)
self.assertEquals(self.nwbfile.processing['test_mod'].description, 'test_description')
self.assertEqual(self.nwbfile.processing['test_mod'].description, 'test_description')

def test_epoch_tags(self):
tags1 = ['t1', 't2']
Expand Down

0 comments on commit 6c2d04a

Please sign in to comment.