File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ describe("LocalstackPlugin", () => {
118
118
endpointFile : 'missing.json'
119
119
}
120
120
121
- let plugin = ( ) => { let instnace = new LocalstackPlugin ( serverless , { } ) ; instance . readConfig ( ) }
121
+ let plugin = ( ) => { let pluginInstance = new LocalstackPlugin ( serverless , { } ) ; pluginInstance . readConfig ( ) }
122
122
123
123
expect ( plugin ) . to . throw ( 'Endpoint: "missing.json" is invalid:' )
124
124
} ) ;
@@ -127,7 +127,7 @@ describe("LocalstackPlugin", () => {
127
127
serverless . service . custom . localstack = {
128
128
endpointFile : 'README.md'
129
129
}
130
- let plugin = ( ) => { let instnace = new LocalstackPlugin ( serverless , { } ) ; instance . readConfig ( ) }
130
+ let plugin = ( ) => { let pluginInstance = new LocalstackPlugin ( serverless , { } ) ; pluginInstance . readConfig ( ) }
131
131
expect ( plugin ) . to . throw ( / E n d p o i n t : " R E A D M E .m d " i s i n v a l i d : / )
132
132
} ) ;
133
133
You can’t perform that action at this time.
0 commit comments