Skip to content

Commit ba98594

Browse files
chore: fix syntax
1 parent 464ef37 commit ba98594

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conda-recipe/run_test.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ if not defined PYTHON (
3232

3333

3434
"%PYTHON%" -c "import dpnp; print(dpnp.__version__)"
35-
if errorlevel neq 0 exit 1
35+
if %errorlevel% neq 0 exit 1
3636

3737
"%PYTHON%" -m dpctl -f
38-
if errorlevel neq 0 exit 1
38+
if %errorlevel% neq 0 exit 1
3939

4040
"%PYTHON%" -m pytest -ra --pyargs dpnp
41-
if errorlevel neq 0 exit 1
41+
if %errorlevel% neq 0 exit 1

0 commit comments

Comments
 (0)