Skip to content

Commit b7bdf83

Browse files
committed
updated test
1 parent 175588d commit b7bdf83

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pandas/tests/reshape/merge/test_multi.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -463,14 +463,14 @@ def test_merge_na_keys(self):
463463
def test_merge_na_datetime_keys_empty_df(self):
464464
data = [
465465
[pd.Timestamp("1950-01-01"), "A", 1.5],
466-
[pd.Timestamp("1950-01-01"), "B", 1.5],
467-
[pd.Timestamp("1950-01-01"), "B", 1.5],
468-
[pd.Timestamp("1950-01-01"), "B", np.nan],
469-
[pd.Timestamp("1950-01-01"), "B", 4.0],
470-
[pd.Timestamp("1950-01-01"), "C", 4.0],
471-
[pd.Timestamp("1950-01-01"), "C", np.nan],
472-
[pd.Timestamp("1950-01-01"), "C", 3.0],
473-
[pd.Timestamp("1950-01-01"), "C", 4.0],
466+
[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],
474474
]
475475

476476
frame = DataFrame(data, columns=["date", "panel", "data"]).set_index(

0 commit comments

Comments
 (0)