Skip to content

Commit

Permalink
Fix call error in test_es parameterization. Tests for ig classes shou…
Browse files Browse the repository at this point in the history
…ld be updated for use with both #92 and #83
  • Loading branch information
jranalli committed Sep 30, 2024
1 parent b092926 commit baee6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/test_ig.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def test_hs(self, param, refdat):
def test_es(self, param, refdat):
sub, ref = refdat['sub'], refdat['data']
fn = getattr(sub, param)
assert fn(v=ref['e'], e=ref['s']) == approx(ref[param], rel=1e-5, abs=1e-1)
assert fn(e=ref['e'], s=ref['s']) == approx(ref[param], rel=1e-5, abs=1e-1)

def test_he(self, param, refdat):
sub, ref = refdat['sub'], refdat['data']
Expand Down

0 comments on commit baee6a6

Please sign in to comment.