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 5e83b85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 33 deletions.
31 changes: 0 additions & 31 deletions test/analyzers/test_jet_rates.py

This file was deleted.

4 changes: 2 additions & 2 deletions test/test_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ class TestMath(unittest.TestCase):
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)
result = _reversed_cumulative_sum(values).tolist()
self.assertListEqual(result, expected)

0 comments on commit 5e83b85

Please sign in to comment.