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 26ba98f commit 5dae701Copy full SHA for 5dae701
pandas/tests/frame/test_api.py
@@ -361,9 +361,9 @@ def test_more_values(self, float_string_frame):
361
def test_repr_with_mi_nat(self, float_string_frame):
362
df = self.klass({'X': [1, 2]},
363
index=[[NaT, Timestamp('20130101')], ['a', 'b']])
364
- res = repr(df)
365
- exp = ' X\nNaT a 1\n2013-01-01 b 2'
366
- assert res == exp
+ result = repr(df)
+ expected = ' X\nNaT a 1\n2013-01-01 b 2'
+ assert result == expected
367
368
def test_iteritems_names(self, float_string_frame):
369
for k, v in compat.iteritems(float_string_frame):
0 commit comments