We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa914cc commit 15c6765Copy full SHA for 15c6765
pandas/tests/test_groupby.py
@@ -392,7 +392,7 @@ def test_grouper_creation_bug(self):
392
assert_frame_equal(result, expected)
393
394
# GH8866
395
- s = Series(np.arange(8),
+ s = Series(np.arange(8,dtype='int64'),
396
index=pd.MultiIndex.from_product([list('ab'),
397
range(2),
398
date_range('20130101',periods=2)],
pandas/util/testing.py
@@ -172,6 +172,7 @@ def close(fignum=None):
172
173
174
def _skip_if_32bit():
175
+ import nose
176
import struct
177
if struct.calcsize("P") * 8 < 64:
178
raise nose.SkipTest("skipping for 32 bit")
0 commit comments