Skip to content

Commit 11272e4

Browse files
authored
chore: fix engine integration test (#1937)
1 parent fab4b5e commit 11272e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/engine_adapter/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _format_df(self, data: pd.DataFrame, to_datetime: bool = True) -> pd.DataFra
111111
for timestamp_column in self.timestamp_columns:
112112
if timestamp_column in data.columns and to_datetime:
113113
value = pd.to_datetime(data[timestamp_column])
114-
if self.dialect in {"bigquery", "databricks", "duckdb", "spark"}:
114+
if self.dialect in {"bigquery", "duckdb"}:
115115
value = value.astype("datetime64[us]")
116116
data[timestamp_column] = value
117117
return data

0 commit comments

Comments
 (0)