File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
from numpy .random import RandomState
7
7
import pytest
8
8
9
- from pandas ._libs import algos as libalgos , groupby as libgroupby , hashtable as ht
9
+ from pandas ._libs import algos as libalgos , hashtable as ht
10
+ from pandas ._libs .groupby import group_var_float32 , group_var_float64
10
11
from pandas .compat .numpy import np_array_datetime64_compat
11
12
import pandas .util ._test_decorators as td
12
13
@@ -1493,7 +1494,7 @@ def test_group_var_constant(self):
1493
1494
class TestGroupVarFloat64 (GroupVarTestMixin ):
1494
1495
__test__ = True
1495
1496
1496
- algo = staticmethod (libgroupby . group_var_float64 )
1497
+ algo = staticmethod (group_var_float64 )
1497
1498
dtype = np .float64
1498
1499
rtol = 1e-5
1499
1500
@@ -1516,7 +1517,7 @@ def test_group_var_large_inputs(self):
1516
1517
class TestGroupVarFloat32 (GroupVarTestMixin ):
1517
1518
__test__ = True
1518
1519
1519
- algo = staticmethod (libgroupby . group_var_float32 )
1520
+ algo = staticmethod (group_var_float32 )
1520
1521
dtype = np .float32
1521
1522
rtol = 1e-2
1522
1523
You can’t perform that action at this time.
0 commit comments