Skip to content

Commit 908007b

Browse files
committed
Merge pull request #4870 from Komnomnomnom/win-dtype-32-bit-fixes
TST: windows dtype 32-bit fixes
2 parents 70fdc25 + 2da1a99 commit 908007b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/io/tests/test_clipboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def check_round_trip_frame(self, data_type):
4343
data = self.data[data_type]
4444
data.to_clipboard()
4545
result = read_clipboard()
46-
tm.assert_frame_equal(data, result)
46+
tm.assert_frame_equal(data, result, check_dtype=False)
4747

4848
def test_round_trip_frame(self):
4949
for dt in self.data_types:

pandas/tests/test_graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def test_xcompat(self):
492492

493493
def test_unsorted_index(self):
494494
df = DataFrame({'y': np.arange(100)},
495-
index=np.arange(99, -1, -1))
495+
index=np.arange(99, -1, -1), dtype=np.int64)
496496
ax = df.plot()
497497
l = ax.get_lines()[0]
498498
rs = l.get_xydata()

0 commit comments

Comments
 (0)