Skip to content

Commit

Permalink
Don't use np.float128 in test_vnorm.py
Browse files Browse the repository at this point in the history
  • Loading branch information
WarrenWeckesser committed Aug 6, 2023
1 parent 9fa602b commit 6cf3bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ufunclab/tests/test_vnorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_axis_z(dtype):
assert_allclose(nrm, [2, np.sqrt(30), 3, np.sqrt(204)])


@pytest.mark.parametrize('dtype', [np.float64, np.float128,
@pytest.mark.parametrize('dtype', [np.float32, np.float64,
np.complex64, np.complex128])
def test_nontrivial_strides(dtype):
a = np.zeros((3, 8), dtype=dtype)
Expand Down

0 comments on commit 6cf3bf9

Please sign in to comment.