Skip to content

Commit 667a101

Browse files
author
Matt Roeschke
committed
Add potential fix for maybe flakey dtype_str test
1 parent e9ec2b6 commit 667a101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexes/multi/test_format.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
def test_dtype_str(indices):
1111
with tm.assert_produces_warning(FutureWarning):
1212
dtype = indices.dtype_str
13-
assert isinstance(dtype, str)
14-
assert dtype == str(indices.dtype)
13+
assert isinstance(dtype, str)
14+
assert dtype == str(indices.dtype)
1515

1616

1717
def test_format(idx):

0 commit comments

Comments
 (0)