Skip to content

Commit

Permalink
reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Oct 25, 2024
1 parent 64c2873 commit 2eab724
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
def test_raise_extremes_with_aggers_raise_12345df(df_ext):
with pytest.raises(ValueError) as e:
raise_extremes_with_aggers(df_ext)
assert (
expected_error = (
"df_ext should only contain extremes (HWLWcode 1/2), "
"but it also contains aggers (HWLWcode 3/4/5"
) in str(e.value)
)
assert expected_error in str(e.value)


@pytest.mark.unittest
Expand Down

0 comments on commit 2eab724

Please sign in to comment.