2626
2727CONNECTION_ID = "bigframes-dev.us.bigframes-default-connection"
2828
29+
2930def test_ai_generate (scalar_types_df : dataframe .DataFrame , snapshot ):
3031 col_name = "string_col"
3132
@@ -106,6 +107,7 @@ def test_ai_generate_with_model_param(scalar_types_df: dataframe.DataFrame, snap
106107
107108 snapshot .assert_match (sql , "out.sql" )
108109
110+
109111def test_ai_generate_bool (scalar_types_df : dataframe .DataFrame , snapshot ):
110112 col_name = "string_col"
111113
@@ -124,7 +126,9 @@ def test_ai_generate_bool(scalar_types_df: dataframe.DataFrame, snapshot):
124126 snapshot .assert_match (sql , "out.sql" )
125127
126128
127- def test_ai_generate_bool_with_connection_id (scalar_types_df : dataframe .DataFrame , snapshot ):
129+ def test_ai_generate_bool_with_connection_id (
130+ scalar_types_df : dataframe .DataFrame , snapshot
131+ ):
128132 col_name = "string_col"
129133
130134 op = ops .AIGenerateBool (
@@ -185,7 +189,10 @@ def test_ai_generate_int(scalar_types_df: dataframe.DataFrame, snapshot):
185189
186190 snapshot .assert_match (sql , "out.sql" )
187191
188- def test_ai_generate_int_with_connection_id (scalar_types_df : dataframe .DataFrame , snapshot ):
192+
193+ def test_ai_generate_int_with_connection_id (
194+ scalar_types_df : dataframe .DataFrame , snapshot
195+ ):
189196 col_name = "string_col"
190197
191198 op = ops .AIGenerateInt (
@@ -249,7 +256,9 @@ def test_ai_generate_double(scalar_types_df: dataframe.DataFrame, snapshot):
249256 snapshot .assert_match (sql , "out.sql" )
250257
251258
252- def test_ai_generate_double_with_connection_id (scalar_types_df : dataframe .DataFrame , snapshot ):
259+ def test_ai_generate_double_with_connection_id (
260+ scalar_types_df : dataframe .DataFrame , snapshot
261+ ):
253262 col_name = "string_col"
254263
255264 op = ops .AIGenerateDouble (
0 commit comments