We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eacc354 + 1af3779 commit b4968c2Copy full SHA for b4968c2
pandas/tests/test_format.py
@@ -181,7 +181,7 @@ def test_repr_should_return_str(self):
181
u("\u03c6")]
182
cols = [u("\u03c8")]
183
df = DataFrame(data, columns=cols, index=index1)
184
- self.assertTrue(type(df.__repr__() == str)) # both py2 / 3
+ self.assertTrue(type(df.__repr__()) == str) # both py2 / 3
185
186
def test_repr_no_backslash(self):
187
with option_context('mode.sim_interactive', True):
0 commit comments