Skip to content

Commit f5cc231

Browse files
committed
and make data smaller
1 parent fe1d3d8 commit f5cc231

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pandas/tests/reshape/merge/test_multi.py

-14
Original file line numberDiff line numberDiff line change
@@ -464,13 +464,6 @@ def test_merge_datetime_index_empty_df(self):
464464
data = [
465465
[pd.Timestamp("1950-01-01"), "A", 1.5],
466466
[pd.Timestamp("1950-01-02"), "B", 1.5],
467-
[pd.Timestamp("1950-01-03"), "B", 1.5],
468-
[pd.Timestamp("1950-01-04"), "B", np.nan],
469-
[pd.Timestamp("1950-01-05"), "B", 4.0],
470-
[pd.Timestamp("1950-01-06"), "C", 4.0],
471-
[pd.Timestamp("1950-01-07"), "C", np.nan],
472-
[pd.Timestamp("1950-01-08"), "C", 3.0],
473-
[pd.Timestamp("1950-01-09"), "C", 4.0],
474467
]
475468

476469
frame = DataFrame(data, columns=["date", "panel", "data"]).set_index(
@@ -482,13 +475,6 @@ def test_merge_datetime_index_empty_df(self):
482475
expected_data = [
483476
[pd.Timestamp("1950-01-01"), "A", 1.5, pd.NA],
484477
[pd.Timestamp("1950-01-02"), "B", 1.5, pd.NA],
485-
[pd.Timestamp("1950-01-03"), "B", 1.5, pd.NA],
486-
[pd.Timestamp("1950-01-04"), "B", np.nan, pd.NA],
487-
[pd.Timestamp("1950-01-05"), "B", 4.0, pd.NA],
488-
[pd.Timestamp("1950-01-06"), "C", 4.0, pd.NA],
489-
[pd.Timestamp("1950-01-07"), "C", np.nan, pd.NA],
490-
[pd.Timestamp("1950-01-08"), "C", 3.0, pd.NA],
491-
[pd.Timestamp("1950-01-09"), "C", 4.0, pd.NA],
492478
]
493479

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

0 commit comments

Comments
 (0)