Skip to content

Commit 89c4110

Browse files
committed
expanding some tests to test Int32HashTable
1 parent cb76713 commit 89c4110

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/test_algos.py

+2
Original file line numberDiff line numberDiff line change
@@ -1517,6 +1517,7 @@ def test_get_unique(self):
15171517
(ht.StringHashTable, ht.ObjectVector, "object", True),
15181518
(ht.Float64HashTable, ht.Float64Vector, "float64", False),
15191519
(ht.Int64HashTable, ht.Int64Vector, "int64", False),
1520+
(ht.Int32HashTable, ht.Int32Vector, "int32", False),
15201521
(ht.UInt64HashTable, ht.UInt64Vector, "uint64", False),
15211522
],
15221523
)
@@ -1640,6 +1641,7 @@ def test_hashtable_factorize(self, htable, tm_dtype, writable):
16401641
ht.StringHashTable,
16411642
ht.Float64HashTable,
16421643
ht.Int64HashTable,
1644+
ht.Int32HashTable,
16431645
ht.UInt64HashTable,
16441646
],
16451647
)

0 commit comments

Comments
 (0)