Skip to content

Commit

Permalink
TST: Fix bad testing statements
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed Oct 19, 2024
1 parent b537411 commit 5f6412d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ def _test_trans(trans, x, *args, **kwargs):


def test_asn_trans():
(_test_trans(asn_trans, arr * 0.01),)
_test_trans(asn_trans, arr * 0.01)


def test_atanh_trans():
(_test_trans(atanh_trans, arr * 0.001),)
_test_trans(atanh_trans, arr * 0.001)


def test_boxcox_trans():
Expand Down

0 comments on commit 5f6412d

Please sign in to comment.