Skip to content

Commit

Permalink
Remove cruft accidentally added to unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjolly committed Jun 19, 2024
1 parent 0f853b8 commit f658075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tool_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit f658075

Please sign in to comment.