Skip to content

Commit d85af30

Browse files
committed
and make data smaller
1 parent b3a5261 commit d85af30

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
@@ -461,13 +461,6 @@ def test_merge_datetime_index_empty_df(self):
461461
data = [
462462
[pd.Timestamp("1950-01-01"), "A", 1.5],
463463
[pd.Timestamp("1950-01-02"), "B", 1.5],
464-
[pd.Timestamp("1950-01-03"), "B", 1.5],
465-
[pd.Timestamp("1950-01-04"), "B", np.nan],
466-
[pd.Timestamp("1950-01-05"), "B", 4.0],
467-
[pd.Timestamp("1950-01-06"), "C", 4.0],
468-
[pd.Timestamp("1950-01-07"), "C", np.nan],
469-
[pd.Timestamp("1950-01-08"), "C", 3.0],
470-
[pd.Timestamp("1950-01-09"), "C", 4.0],
471464
]
472465

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

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

0 commit comments

Comments
 (0)