Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 0a394fc

Browse files
committed
Fix mount path assertion
The test passed locally, but didn't match in CI: https://github.com/localstack/localstack/actions/runs/17940461254/job/51017715236?pr=13183#step:9:3229 ``` /var/lib/localstack/tmp/hot-reload-342b262a /tmp/localstack/tmp/hot-reload-342b262a ``` Using the `mount_path` should fix this issue in CI.
1 parent 73d20a2 commit 0a394fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/aws/services/lambda_/test_lambda_developer_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_hot_reloading(
7474

7575
get_function_response = aws_client.lambda_.get_function(FunctionName=function_name)
7676
code_location_path = Path.from_uri(get_function_response["Code"]["Location"])
77-
assert str(code_location_path) == hot_reloading_dir_path
77+
assert str(code_location_path) == mount_path
7878

7979
response = aws_client.lambda_.invoke(FunctionName=function_name, Payload=b"{}")
8080
response_dict = json.load(response["Payload"])

0 commit comments

Comments
 (0)