Skip to content

Commit

Permalink
Merge branch 'master' into rik/wf
Browse files Browse the repository at this point in the history
  • Loading branch information
gemenerik committed Oct 25, 2024
2 parents c06ea3b + fe7beba commit a572904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/utils/test_param_file_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ def mock_wait(self, timeout=None):
with patch.object(Event, 'wait', new=mock_wait):
# Test and Assert
self.assertTrue(helper.store_params_from_file('test/utils/fixtures/five_params.yaml'))
self.assertEquals(5, len(mock_Param.set_value.mock_calls))
self.assertEquals(5, len(mock_Param.persistent_store.mock_calls))
self.assertEqual(5, len(mock_Param.set_value.mock_calls))
self.assertEqual(5, len(mock_Param.persistent_store.mock_calls))

0 comments on commit a572904

Please sign in to comment.