Skip to content

Commit e4bd3c8

Browse files
committed
test: revert imports back to main
1 parent 20e13e4 commit e4bd3c8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

numba_cuda/numba/cuda/tests/cudapy/test_lineinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from numba import cuda
55
from numba.cuda import float32, int32
6-
from numba.cuda.errors import NumbaInvalidConfigWarning
6+
from numba.cuda.core.errors import NumbaInvalidConfigWarning
77
import pytest
88

99
from numba.cuda.testing import CUDATestCase, skip_on_cudasim

numba_cuda/numba/cuda/tests/cudapy/test_warning.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
override_config,
1616
run_in_subprocess,
1717
)
18-
from numba.core.errors import NumbaPerformanceWarning, NumbaInvalidConfigWarning
18+
from numba.cuda.core.errors import (
19+
NumbaPerformanceWarning,
20+
NumbaInvalidConfigWarning,
21+
)
1922
from numba.cuda.core import config
2023
import warnings
2124

0 commit comments

Comments
 (0)