Skip to content

Commit 2c25c16

Browse files
committed
Update consistency tests with correct path to erf submodule
1 parent 5a5f2e6 commit 2c25c16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpnp/tests/test_special.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ def _check_variant_func(self, func, other_func, rtol, atol=0):
8686

8787
def test_erfc(self):
8888
self._check_variant_func(
89-
dpnp.special.erfc,
90-
lambda z: 1 - dpnp.special.erf(z),
89+
dpnp.scipy.special.erfc,
90+
lambda z: 1 - dpnp.scipy.special.erf(z),
9191
rtol=self.tol,
9292
atol=self.tol,
9393
)
9494

9595
def test_erfcx(self):
9696
self._check_variant_func(
97-
dpnp.special.erfcx,
98-
lambda z: dpnp.exp(z * z) * dpnp.special.erfc(z),
97+
dpnp.scipy.special.erfcx,
98+
lambda z: dpnp.exp(z * z) * dpnp.scipy.special.erfc(z),
9999
rtol=10 * self.tol,
100100
)

0 commit comments

Comments
 (0)