Skip to content

Commit

Permalink
BUG/TST: Fix a missing 'j' in a test input value.
Browse files Browse the repository at this point in the history
  • Loading branch information
WarrenWeckesser committed Jun 9, 2024
1 parent ac316aa commit 9fa28f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ufunclab/tests/test_log1p.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_basic(z, wref):

# In this test, the inputs are so small that the output
# should equal the input.
@pytest.mark.parametrize('z', [3e-180+2e-175j, 1e-50-3e-55])
@pytest.mark.parametrize('z', [3e-180+2e-175j, 1e-50-3e-55j])
def test_tiny(z):
w = log1p_doubledouble(z)
assert w == z
Expand Down

0 comments on commit 9fa28f0

Please sign in to comment.