@@ -10,7 +10,7 @@ describe('with no configuration the construct', () => {
10
10
const template = Template . fromStack ( stack ) ;
11
11
test ( 'synthesizes successfully' , ( ) => {
12
12
template . hasResourceProperties ( 'AWS::Lambda::LayerVersion' , {
13
- Description : 'Lambda Powertools for Python latest version' ,
13
+ Description : 'Lambda Powertools for Python [x86_64] latest version' ,
14
14
} ) ;
15
15
} ) ;
16
16
@@ -40,7 +40,7 @@ describe('with arm64 architecture', () => {
40
40
const template = Template . fromStack ( stack ) ;
41
41
test ( 'synthesizes successfully' , ( ) => {
42
42
template . hasResourceProperties ( 'AWS::Lambda::LayerVersion' , {
43
- Description : 'Lambda Powertools for Python latest version' ,
43
+ Description : 'Lambda Powertools for Python [arm64] latest version' ,
44
44
CompatibleArchitectures : [ 'arm64' ] ,
45
45
} ) ;
46
46
} ) ;
@@ -68,7 +68,7 @@ describe('with version configuration the construct', () => {
68
68
69
69
70
70
Template . fromStack ( stack ) . hasResourceProperties ( 'AWS::Lambda::LayerVersion' , {
71
- Description : 'Lambda Powertools for Python version 1.21.0' ,
71
+ Description : 'Lambda Powertools for Python [x86_64] version 1.21.0' ,
72
72
} ) ;
73
73
} ) ;
74
74
@@ -87,7 +87,7 @@ describe('with version configuration the construct', () => {
87
87
} ) ;
88
88
89
89
Template . fromStack ( stack ) . hasResourceProperties ( 'AWS::Lambda::LayerVersion' , {
90
- Description : 'Lambda Powertools for Python with Extras version 1.22.0' ,
90
+ Description : 'Lambda Powertools for Python [x86_64] with extra dependencies version 1.22.0' ,
91
91
} ) ;
92
92
93
93
} ) ;
@@ -99,7 +99,7 @@ describe('with version configuration the construct', () => {
99
99
} ) ;
100
100
101
101
Template . fromStack ( stack ) . hasResourceProperties ( 'AWS::Lambda::LayerVersion' , {
102
- Description : 'Lambda Powertools for Python with Extras latest version' ,
102
+ Description : 'Lambda Powertools for Python [x86_64] with extra dependencies latest version' ,
103
103
} ) ;
104
104
} ) ;
105
105
} ) ;
0 commit comments