Skip to content

Commit f07be8e

Browse files
fix test_compile_readlocal
1 parent 23a52cb commit f07be8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/core/compile/sqlglot/test_compile_readlocal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_compile_readlocal(
2525
scalar_types_pandas_df: pd.DataFrame, compiler_session: bigframes.Session, snapshot
2626
):
2727
# Durations not yet supported
28-
scalar_types_pandas_df = scalar_types_pandas_df.drop("duration_col")
28+
scalar_types_pandas_df = scalar_types_pandas_df.drop(["duration_col"], axis=1)
2929
bf_df = bpd.DataFrame(scalar_types_pandas_df, session=compiler_session)
3030
snapshot.assert_match(bf_df.sql, "out.sql")
3131

0 commit comments

Comments
 (0)