Skip to content

Commit 3d92d4d

Browse files
committed
style: format test_compile_readtable
1 parent e03f408 commit 3d92d4d

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

packages/bigframes/tests/unit/core/compile/sqlglot/test_compile_readtable.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ def test_compile_readtable_w_columns_filters(compiler_session, snapshot):
8585
def test_compile_astype_aliases(scalar_types_df: bpd.DataFrame, snapshot):
8686
# Test case for issue #17394 (CAST columns lose their aliases)
8787
bf_df = scalar_types_df[["timestamp_col", "int64_col"]]
88-
result = bf_df.astype({
89-
"timestamp_col": "string[pyarrow]",
90-
"int64_col": "Float64",
91-
})
88+
result = bf_df.astype(
89+
{
90+
"timestamp_col": "string[pyarrow]",
91+
"int64_col": "Float64",
92+
}
93+
)
9294
snapshot.assert_match(result.sql, "out.sql")

0 commit comments

Comments
 (0)