Skip to content

Commit a4cab86

Browse files
committed
modify skip test msg
1 parent 139d194 commit a4cab86

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/test_mathematical.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,7 @@ def test_fmod(self, dtype, lhs, rhs):
176176
array([9.53674318e-08])
177177
On a gpu without support for `float64`, dpnp produces results similar to the second one.
178178
"""
179-
pytest.skip(
180-
"Due to accuracy reason, the results are different for NumPy and dpnp"
181-
)
179+
pytest.skip("Due to accuracy reason, the results are different.")
182180
self._test_mathematical("fmod", dtype, lhs, rhs)
183181

184182
@pytest.mark.parametrize("dtype", get_all_dtypes(no_complex=True))
@@ -230,9 +228,7 @@ def test_remainder(self, dtype, lhs, rhs):
230228
usm_ndarray([0.29999977, 0.2999999 ], dtype=float32)
231229
On a gpu without support for `float64`, dpnp produces results similar to the second one.
232230
"""
233-
pytest.skip(
234-
"Due to accuracy reason, the results are different for NumPy and dpnp"
235-
)
231+
pytest.skip("Due to accuracy reason, the results are different.")
236232
self._test_mathematical("remainder", dtype, lhs, rhs)
237233

238234
@pytest.mark.parametrize("dtype", get_all_dtypes())

0 commit comments

Comments
 (0)