Skip to content

Commit

Permalink
Changed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
szabogtamas authored and grst committed Mar 28, 2020
1 parent 0875529 commit 071758e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ def test_normalize_counts(group_df):
_normalize_counts(group_df, True, None)

npt.assert_equal(_normalize_counts(group_df, False), [1] * 6)
npt.assert_equal(_normalize_counts(group_df, "sample"), [4, 2, 4, 4, 4, 2])
npt.assert_equal(_normalize_counts(group_df, True, "sample"), [4, 2, 4, 4, 4, 2])
npt.assert_equal(_normalize_counts(group_df, "sample"), [.25, .5, .25, .25, .25, .5])
npt.assert_equal(_normalize_counts(group_df, True, "sample"), [.25, .5, .25, .25, .25, .5])


def test_layout_components():
Expand Down

0 comments on commit 071758e

Please sign in to comment.