Skip to content

Commit 21caa82

Browse files
committed
and make data smaller
1 parent af030fe commit 21caa82

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pandas/tests/reshape/merge/test_multi.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -462,13 +462,6 @@ def test_merge_datetime_index_empty_df(self):
462462
data = [
463463
[pd.Timestamp("1950-01-01"), "A", 1.5],
464464
[pd.Timestamp("1950-01-02"), "B", 1.5],
465-
[pd.Timestamp("1950-01-03"), "B", 1.5],
466-
[pd.Timestamp("1950-01-04"), "B", np.nan],
467-
[pd.Timestamp("1950-01-05"), "B", 4.0],
468-
[pd.Timestamp("1950-01-06"), "C", 4.0],
469-
[pd.Timestamp("1950-01-07"), "C", np.nan],
470-
[pd.Timestamp("1950-01-08"), "C", 3.0],
471-
[pd.Timestamp("1950-01-09"), "C", 4.0],
472465
]
473466

474467
frame = DataFrame(data, columns=["date", "panel", "data"]).set_index(
@@ -480,13 +473,6 @@ def test_merge_datetime_index_empty_df(self):
480473
expected_data = [
481474
[pd.Timestamp("1950-01-01"), "A", 1.5, pd.NA],
482475
[pd.Timestamp("1950-01-02"), "B", 1.5, pd.NA],
483-
[pd.Timestamp("1950-01-03"), "B", 1.5, pd.NA],
484-
[pd.Timestamp("1950-01-04"), "B", np.nan, pd.NA],
485-
[pd.Timestamp("1950-01-05"), "B", 4.0, pd.NA],
486-
[pd.Timestamp("1950-01-06"), "C", 4.0, pd.NA],
487-
[pd.Timestamp("1950-01-07"), "C", np.nan, pd.NA],
488-
[pd.Timestamp("1950-01-08"), "C", 3.0, pd.NA],
489-
[pd.Timestamp("1950-01-09"), "C", 4.0, pd.NA],
490476
]
491477

492478
expected = DataFrame(expected_data, columns=["date", "panel", "data", "state"])

0 commit comments

Comments
 (0)