Skip to content

Commit

Permalink
fixed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kreczko committed Mar 23, 2018
1 parent ed3650a commit 26eca1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 32 deletions.
31 changes: 0 additions & 31 deletions test/analyzers/test_jet_rates.py

This file was deleted.

2 changes: 1 addition & 1 deletion test/test_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ def test_reversed_cumulative_sum(self):
values = [1, 2, 3, 4]
expected = [10, 9, 7, 4]
result = _reversed_cumulative_sum(values)
self.assertEqual(result, expected)
self.assertListEqual(result, expected)

0 comments on commit 26eca1f

Please sign in to comment.