Skip to content

Commit c8c1bdc

Browse files
committed
Fix minimum test
1 parent 188655e commit c8c1bdc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integration/timeseries/test_timeseries.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,13 @@ def test_compute_lstmdetection_multiple_categorical_columns():
6363
def test_compute_lstmdetection_mismatching_datetime_columns():
6464
"""Test LSTMDetection metric with mismatching datetime columns.
6565
66-
Test it when the real data has a date column and the synthetic data has a string column.
66+
Test it when the real data has a datetime column and the synthetic data has a string column.
6767
"""
6868
# Setup
6969
df1 = pd.DataFrame({
7070
's_key': [1, 2, 3, 4, 5],
7171
'visits': pd.to_datetime(['1/1/2019', '1/2/2019', '1/3/2019', '1/4/2019', '1/5/2019']),
7272
})
73-
df1['visits'] = df1['visits'].dt.date
7473
df2 = pd.DataFrame({
7574
's_key': [1, 2, 3, 4, 5],
7675
'visits': ['1/2/2019', '1/2/2019', '1/3/2019', '1/4/2019', '1/5/2019'],

0 commit comments

Comments
 (0)