Skip to content

Commit 21d10cb

Browse files
committed
revert commented-out
1 parent d2ee718 commit 21d10cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/multiindex/test_loc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ def test_loc_period_string_indexing():
626626

627627
def test_loc_datetime_mask_slicing():
628628
# GH 16699
629-
dt_idx = pd.to_datetime(["2017-05-04", "2017-05-05"]) # .as_unit("s")
629+
dt_idx = pd.to_datetime(["2017-05-04", "2017-05-05"])
630630
m_idx = MultiIndex.from_product([dt_idx, dt_idx], names=["Idx1", "Idx2"])
631631
df = DataFrame(
632632
data=[[1, 2], [3, 4], [5, 6], [7, 6]], index=m_idx, columns=["C1", "C2"]

0 commit comments

Comments
 (0)