Skip to content

Commit 2fab7f6

Browse files
committed
update test
1 parent 68a2f18 commit 2fab7f6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_sklearnex.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22

33
import numpy as np
44

5-
from sklearn.cluster import DBSCAN
6-
75
class TestSklearnex(unittest.TestCase):
86
def test_dbscan(self):
9-
from sklearnex import patch_sklearn
10-
patch_sklearn()
7+
from sklearnex.cluster import DBSCAN
118
X = np.array([[1., 2.], [2., 2.], [2., 3.],
129
[8., 7.], [8., 8.], [25., 80.]], dtype=np.float32)
1310

0 commit comments

Comments
 (0)