We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da2db0b commit 9981ba2Copy full SHA for 9981ba2
test.js
@@ -728,7 +728,7 @@ test('poetry py3.6 can package flask with default options', t => {
728
const zipfiles = listZipFiles('.serverless/sls-py-req-test.zip');
729
t.true(zipfiles.includes(`flask${sep}__init__.py`), 'flask is packaged');
730
t.true(zipfiles.includes(`bottle.py`), 'bottle is packaged');
731
- t.false(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is NOT packaged');
+ t.true(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is packaged');
732
t.end();
733
});
734
0 commit comments