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 4fb1bd6 commit 39c735cCopy full SHA for 39c735c
pandas/tools/tests/test_merge.py
@@ -1402,6 +1402,17 @@ def test_concat_keys_with_none(self):
1402
keys=['b', 'c', 'd', 'e'])
1403
tm.assert_frame_equal(result, expected)
1404
1405
+ def test_concat_bug_1719(self):
1406
+ ts1 = tm.makeTimeSeries()
1407
+ ts2 = tm.makeTimeSeries()[::2]
1408
+
1409
+ ## to join with union
1410
+ ## these two are of different length!
1411
+ left = concat([ts1,ts2], join='outer', axis = 1)
1412
+ right = concat([ts2,ts1], join='outer', axis = 1)
1413
1414
+ self.assertEqual(len(left), len(right))
1415
1416
class TestOrderedMerge(unittest.TestCase):
1417
1418
def setUp(self):
0 commit comments