Skip to content

Commit

Permalink
Testing for 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mghosh00 committed Mar 7, 2024
1 parent a39bfbd commit 893515e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def test_write_to_Rt_file(self, mock_mkdir, time=1):
# Need to test keys and values separately in case we are using
# python 3.7 (for which np.testing.assert_equal will not work)
if sys.version_info[1] <= 7:
actual_dict = calls[0].args[0]
actual_dict = calls[0].args[1]
else:
actual_dict = calls[0].args[0]
self.assertEqual(dict_1, actual_dict)
Expand Down

0 comments on commit 893515e

Please sign in to comment.