We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e426ac7 commit 9891c6dCopy full SHA for 9891c6d
pandas/tests/reshape/test_crosstab.py
@@ -344,13 +344,13 @@ def test_margin_dropna6(self):
344
)
345
expected = DataFrame(
346
[
347
- [1, 0, 1],
348
+ [1, 0, 1.0],
349
[0, 0, np.nan],
350
- [2, 0, 2],
351
- [1, 1, 2],
352
- [0, 1, 1],
353
- [5, 2, 7],
+ [2, 0, 2.0],
+ [1, 1, 2.0],
+ [0, 1, 1.0],
+ [5, 2, 7.0],
354
],
355
index=m,
356
0 commit comments