Skip to content

Commit b743f1e

Browse files
committed
small fix
1 parent dc20b94 commit b743f1e

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
@@ -249,8 +249,8 @@ def test_11__using_lambda_deploy__confirm_we_can_upload_file_with_only_boto3_cod
249249
def run(event, context): # this runs inside the lambda environment
250250
import os
251251
import types
252-
assert sorted(os.listdir('/var/task')) == [ 'boto3__lambda.py' , # confirm the files are added ok to the '/var/task' (which is the folder lambda deployment copies the files from the provided zip folder
253-
'test_Lambda__Dependency__Inside_Lambda.py']
252+
assert sorted(os.listdir('/var/task')) == sorted([ 'boto3__lambda.py' , # confirm the files are added ok to the '/var/task' (which is the folder lambda deployment copies the files from the provided zip folder
253+
'test_Lambda__Dependency__Inside_Lambda.py'])
254254
# noinspection PyUnresolvedReferences
255255
import boto3__lambda # confirm we can import the boto3__lambda module
256256
assert type(boto3__lambda) is types.ModuleType # and that it is a module

0 commit comments

Comments
 (0)