File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/toolbox-core/tests Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,8 @@ async def test_run_tool_unauth_with_auth(
139
139
match = rf"Validation failed for tool 'get-row-by-id': unused auth tokens: my-test-auth" ,
140
140
):
141
141
await toolbox .load_tool (
142
- "get-row-by-id" , auth_token_getters = {"my-test-auth" : lambda : auth_token2 }
142
+ "get-row-by-id" ,
143
+ auth_token_getters = {"my-test-auth" : lambda : auth_token2 },
143
144
)
144
145
145
146
async def test_run_tool_no_auth (self , toolbox : ToolboxClient ):
Original file line number Diff line number Diff line change @@ -121,7 +121,8 @@ def test_run_tool_unauth_with_auth(
121
121
match = rf"Validation failed for tool 'get-row-by-id': unused auth tokens: my-test-auth" ,
122
122
):
123
123
toolbox .load_tool (
124
- "get-row-by-id" , auth_token_getters = {"my-test-auth" : lambda : auth_token2 }
124
+ "get-row-by-id" ,
125
+ auth_token_getters = {"my-test-auth" : lambda : auth_token2 },
125
126
)
126
127
127
128
def test_run_tool_no_auth (self , toolbox : ToolboxSyncClient ):
You can’t perform that action at this time.
0 commit comments