We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ac9275 commit 2758e25Copy full SHA for 2758e25
tests/test_engineering/test_engineer.py
@@ -74,5 +74,5 @@ def test_resample_with_date_range():
74
eng.download(databases=["wpp"])
75
eng.clean(kinds=["resample"], date_range=("01Jan2022", "19Sep2022"))
76
df = eng.all()
77
- assert df["Date"].min() >= pd.to_datetime("01Jan2022")
78
- assert df["Date"].max() <= pd.to_datetime("19Sep2022")
+ assert pd.to_datetime(df["Date"].min()) >= pd.to_datetime("01Jan2022")
+ assert pd.to_datetime(df["Date"].max()) <= pd.to_datetime("19Sep2022")
0 commit comments