Skip to content

Commit 91589b9

Browse files
committed
chore: format output
1 parent c720b14 commit 91589b9

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
@@ -173,7 +173,7 @@ def get_current_data(self, table: exp.Table) -> pd.DataFrame:
173173
df = self.engine_adapter.fetchdf(exp.select("*").from_(table), quote_identifiers=True)
174174
if self.dialect == "snowflake" and "id" in df.columns:
175175
df["id"] = df["id"].apply(lambda x: x if pd.isna(x) else int(x))
176-
return df
176+
return self._format_df(df)
177177

178178
def compare_with_current(self, table: exp.Table, expected: pd.DataFrame) -> None:
179179
compare_dataframes(

0 commit comments

Comments
 (0)