From f658075415c4251222135447eea7fa3afbdb2cfa Mon Sep 17 00:00:00 2001 From: Stephen Jolly Date: Wed, 19 Jun 2024 13:51:50 +0100 Subject: [PATCH] Remove cruft accidentally added to unit tests --- tests/tool_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tool_test.py b/tests/tool_test.py index 49ac712..e979486 100644 --- a/tests/tool_test.py +++ b/tests/tool_test.py @@ -26,10 +26,10 @@ def test_reorder_correlations(): input_array1 = np.array([0, 1, 2, 3]) - np.testing.assert_array_equal(reorder_correlations(input_array1, 2), np.array([2, 3, 0, 1]), 2) + np.testing.assert_array_equal(reorder_correlations(input_array1, 2), np.array([2, 3, 0, 1])) input_array2 = np.array([0, 1, 2, 3, 4]) - np.testing.assert_array_equal(reorder_correlations(input_array2, 2), np.array([2, 3, 4, 0, 1]), 2) + np.testing.assert_array_equal(reorder_correlations(input_array2, 2), np.array([2, 3, 4, 0, 1])) def test_tool():