Skip to content

Commit 09d7d08

Browse files
committed
Bump aws-sdk-go version to v1.44.181
1 parent 99c54dd commit 09d7d08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/tests/test_function.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_smoke(self, lambda_client):
137137
cr["spec"]["description"] = "Updated description"
138138
cr["spec"]["timeout"] = 10
139139
cr["spec"]["tags"] = update_tags
140-
140+
141141
# Patch k8s resource
142142
k8s.patch_custom_resource(ref, cr)
143143
time.sleep(UPDATE_WAIT_AFTER_SECONDS)
@@ -332,7 +332,7 @@ def test_function_package_type_image(self, lambda_client):
332332
assert lambda_validator.function_exists(resource_name)
333333

334334
cr["spec"]["timeout"] = 10
335-
cr["spec"]["ephemeralStorage"] = { "size" : 1024 }
335+
cr["spec"]["ephemeralStorage"] = { "size" : 512 }
336336

337337
# Patch k8s resource
338338
k8s.patch_custom_resource(ref, cr)
@@ -341,7 +341,7 @@ def test_function_package_type_image(self, lambda_client):
341341
# Check function updated fields
342342
function = lambda_validator.get_function(resource_name)
343343
assert function["Configuration"]["Timeout"] == 10
344-
assert function["Configuration"]["EphemeralStorage"]["Size"] == 1024
344+
assert function["Configuration"]["EphemeralStorage"]["Size"] == 512
345345

346346
# Delete k8s resource
347347
_, deleted = k8s.delete_custom_resource(ref)

0 commit comments

Comments
 (0)