Skip to content

Commit d9c19bf

Browse files
committed
fix: Correct key in e2e tests for testing Lambda function URLs
1 parent 2ec508a commit d9c19bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e_tests/python/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ async def main() -> None:
9393
)
9494

9595
# Add Lambda function URL servers if they exist in config
96-
if "lambdaFunctionUrlServers" in server_config:
96+
if "lambdaFunctionUrls" in server_config:
9797
servers.extend(
9898
[
9999
LambdaFunctionUrlClient(name, LambdaFunctionUrlConfig(**srv_config))
100100
for name, srv_config in server_config[
101-
"lambdaFunctionUrlServers"
101+
"lambdaFunctionUrls"
102102
].items()
103103
]
104104
)

0 commit comments

Comments
 (0)