We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a399489 commit b403a73Copy full SHA for b403a73
pandas/tests/frame/test_api.py
@@ -366,9 +366,9 @@ def test_more_values(self, float_string_frame):
366
def test_repr_with_mi_nat(self, float_string_frame):
367
df = self.klass({'X': [1, 2]},
368
index=[[pd.NaT, pd.Timestamp('20130101')], ['a', 'b']])
369
- res = repr(df)
370
- exp = ' X\nNaT a 1\n2013-01-01 b 2'
371
- assert res == exp
+ result = repr(df)
+ expected = ' X\nNaT a 1\n2013-01-01 b 2'
+ assert result == expected
372
373
def test_iteritems_names(self, float_string_frame):
374
for k, v in compat.iteritems(float_string_frame):
0 commit comments