Skip to content

Commit c244438

Browse files
committed
further cleanup tests
1 parent 4f28026 commit c244438

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/tests/frame/test_sorting.py

-3
Original file line numberDiff line numberDiff line change
@@ -527,9 +527,6 @@ def test_sort_nat_values_in_int_column(self):
527527
df = DataFrame(dict(datetime=[Timestamp("2016-01-01"), NaT],
528528
float=float_values), columns=["datetime", "float"])
529529

530-
assert df["datetime"].dtypes == np.dtype("datetime64[ns]"),\
531-
"this test function is not reliable anymore"
532-
533530
df_reversed = DataFrame(dict(datetime=[NaT, Timestamp("2016-01-01")],
534531
float=float_values[::-1]),
535532
columns=["datetime", "float"],

0 commit comments

Comments
 (0)