@@ -65,7 +65,7 @@ def test_execute_experimental_routes_to_sqlglot(mock_executor, monkeypatch):
6565 monkeypatch .setattr (bigframes .options .experiments , "sql_compiler" , "experimental" )
6666 mock_executor .execute (array_value , execution_spec )
6767
68- execution_spec .add_labels .assert_called_once_with (( "bigframes-compiler" , "sqlglot" ) )
68+ execution_spec .add_labels .assert_called_once_with ({ "bigframes-compiler" : "sqlglot" } )
6969 mock_executor ._sqlglot_executor .execute .assert_called_once_with (
7070 array_value , execution_spec
7171 )
@@ -86,7 +86,7 @@ def test_execute_stable_routes_to_sqlglot_success(mock_executor, monkeypatch):
8686 mock_executor .execute (array_value , execution_spec )
8787
8888 execution_spec .add_labels .assert_called_once_with (
89- ( "bigframes-compiler" , "sqlglot-123456789012" )
89+ { "bigframes-compiler" : "sqlglot-123456789012" }
9090 )
9191 mock_executor ._sqlglot_executor .execute .assert_called_once_with (
9292 array_value , execution_spec
@@ -117,8 +117,8 @@ def test_execute_stable_routes_to_sqlglot_fallback_to_ibis(mock_executor, monkey
117117
118118 execution_spec .add_labels .assert_has_calls (
119119 [
120- mock .call (( "bigframes-compiler" , "sqlglot-123456789012" ) ),
121- mock .call (( "bigframes-compiler" , "ibis-123456789012" ) ),
120+ mock .call ({ "bigframes-compiler" : "sqlglot-123456789012" } ),
121+ mock .call ({ "bigframes-compiler" : "ibis-123456789012" } ),
122122 ]
123123 )
124124
0 commit comments