Skip to content

Commit 9981ba2

Browse files
author
Thomas Pansino
committed
Fix seemingly incorrect test assertion
1 parent da2db0b commit 9981ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ test('poetry py3.6 can package flask with default options', t => {
728728
const zipfiles = listZipFiles('.serverless/sls-py-req-test.zip');
729729
t.true(zipfiles.includes(`flask${sep}__init__.py`), 'flask is packaged');
730730
t.true(zipfiles.includes(`bottle.py`), 'bottle is packaged');
731-
t.false(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is NOT packaged');
731+
t.true(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is packaged');
732732
t.end();
733733
});
734734

0 commit comments

Comments
 (0)