Skip to content

Commit fcf947d

Browse files
committed
TST: dtype issue on 32-bit with melt
1 parent 5693de4 commit fcf947d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_reshape.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
def test_melt():
2424
df = tm.makeTimeDataFrame()[:10]
25-
df['id1'] = (df['A'] > 0).astype(int)
26-
df['id2'] = (df['B'] > 0).astype(int)
25+
df['id1'] = (df['A'] > 0).astype(np.int64)
26+
df['id2'] = (df['B'] > 0).astype(np.int64)
2727

2828
var_name = 'var'
2929
value_name = 'val'

0 commit comments

Comments
 (0)