Skip to content
This repository was archived by the owner on Dec 22, 2019. It is now read-only.

Commit a922889

Browse files
author
araraonline
committed
Fix test
1 parent 4a2c3e8 commit a922889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/reshape/test_concat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ def test_dups_index(self):
10751075
result = df.iloc[0:8, :].append(df.iloc[8:], sort=False)
10761076
assert_frame_equal(result, df)
10771077

1078-
result = df.iloc[0:8, :].append(df.iloc[8:9]).append(df.iloc[9:10], sort=False)
1078+
result = df.iloc[0:8, :].append(df.iloc[8:9], sort=False).append(df.iloc[9:10], sort=False)
10791079
assert_frame_equal(result, df)
10801080

10811081
expected = concat([df, df], axis=0)

0 commit comments

Comments
 (0)