Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 023033e

Browse files
jaysonsantosThomas Pansino
authored andcommitted
Fix wrongly expected file in test
1 parent 5dc20c5 commit 023033e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ test('poetry py3.6 can package flask with default options', t => {
727727
sls(['package']);
728728
const zipfiles = listZipFiles('.serverless/sls-py-req-test.zip');
729729
t.true(zipfiles.includes(`flask${sep}__init__.py`), 'flask is packaged');
730-
t.true(zipfiles.includes(`bottle${sep}__init__.py`), 'bottle is packaged');
730+
t.true(zipfiles.includes(`bottle.py`), 'bottle is packaged');
731731
t.false(zipfiles.includes(`boto3${sep}__init__.py`), 'boto3 is NOT packaged');
732732
t.end();
733733
});

0 commit comments

Comments
 (0)