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

Commit f731656

Browse files
committed
fix: tests
1 parent dd4b6e1 commit f731656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/lambda-powertools-python-layer.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ describe('construct build args for Dockerfile', () => {
108108
test('returns extras and version', () => {
109109
const args = LambdaPowertoolsLayer.constructBuildArgs(RuntimeFamily.PYTHON, true, '1.21.0');
110110

111-
expect(args).toEqual('[extras]==1.21.0');
111+
expect(args).toEqual('[all]==1.21.0');
112112
});
113113

114114
test('returns only extras when no version provided', () => {
115115
const args = LambdaPowertoolsLayer.constructBuildArgs(RuntimeFamily.PYTHON, true, undefined);
116116

117-
expect(args).toEqual('[extras]');
117+
expect(args).toEqual('[all]');
118118
});
119119

120120
test('returns only version when no extras flag provided', () => {

0 commit comments

Comments
 (0)