Skip to content

Commit 3f9fc46

Browse files
committed
fixing tests case failing due to correct sizeof implementation, here is PyObjectHashMap used as can be seen on the basis of expected result for 32bit build (and not Float64)
1 parent 724a4e7 commit 3f9fc46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/base/test_misc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_memory_usage(index_or_series_obj):
7777
if isinstance(obj, Index):
7878
expected = 0
7979
else:
80-
expected = 80 if IS64 else 48
80+
expected = 108 if IS64 else 64
8181
assert res_deep == res == expected
8282
elif is_object or is_categorical:
8383
# only deep will pick them up

0 commit comments

Comments
 (0)