Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
Minor typo fix
  • Loading branch information
khaled committed May 26, 2023
1 parent d260ac0 commit 11d44e0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# SPDX-License-Identifier: Apache-2.0

import dpctl
import pytest
from llvmlite import ir as llvmir
from numba.core import cgutils, types
from numba.extending import intrinsic
Expand Down
2 changes: 1 addition & 1 deletion numba_dpex/tests/dpjit_tests/dpnp/test_dpnp_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def func(shape, fill_value):
if c.dtype != dummy.dtype:
if sys.platform != "linux":
pytest.xfail(
"Ddefault bit length is not as same as that of linux for {0:s}".format(
"Default bit length is not as same as that of linux for {0:s}".format(
str(dummy.dtype)
)
)
Expand Down
2 changes: 1 addition & 1 deletion numba_dpex/tests/dpjit_tests/dpnp/test_dpnp_full_like.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def func(x, fill_value):
if c.dtype != dummy.dtype:
if sys.platform != "linux":
pytest.xfail(
"Ddefault bit length is not as same as that of linux for {0:s}".format(
"Default bit length is not as same as that of linux for {0:s}".format(
str(dummy.dtype)
)
)
Expand Down

0 comments on commit 11d44e0

Please sign in to comment.