Skip to content

Commit 5dae701

Browse files
committed
Clean up res/exp in frame/test_api.py
1 parent 26ba98f commit 5dae701

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/frame/test_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,9 @@ def test_more_values(self, float_string_frame):
361361
def test_repr_with_mi_nat(self, float_string_frame):
362362
df = self.klass({'X': [1, 2]},
363363
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
364+
result = repr(df)
365+
expected = ' X\nNaT a 1\n2013-01-01 b 2'
366+
assert result == expected
367367

368368
def test_iteritems_names(self, float_string_frame):
369369
for k, v in compat.iteritems(float_string_frame):

0 commit comments

Comments
 (0)