Skip to content

Commit c138503

Browse files
committed
another fix
1 parent b743f1e commit c138503

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/aws/lambda_/dependencies/test_Lambda__Dependency__Inside_Lambda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ def run(event, context): # this runs inside the lambda en
268268
with Deploy_Lambda(handler=run) as _:
269269
_.add_file(file_to_add)
270270
_.add_file (lambda_handler)
271-
assert _.files() == [ '/boto3__lambda.py' ,
272-
'/test_Lambda__Dependency__Inside_Lambda.py']
271+
assert _.files() == sorted([ '/boto3__lambda.py' ,
272+
'/test_Lambda__Dependency__Inside_Lambda.py'])
273273
assert _.deploy() is True
274274
assert _.invoke() == boto3__lambda.ping() == 'pong'
275275
assert _.info().get('Configuration').get('CodeSize') < 1300 # confirm that size of the code uploaded is still very small

0 commit comments

Comments
 (0)