Skip to content

Commit

Permalink
Fix lambda invoke error
Browse files Browse the repository at this point in the history
  • Loading branch information
blaxk committed Jan 26, 2024
1 parent 0b32dac commit 7145512
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-test-case",
"version": "0.6.0",
"version": "0.6.1",
"engines": {
"node": ">=12.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions src/AWSLambdaTestCase.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { fromIni } = require('@aws-sdk/credential-provider-ini')
const TestCase = require('./TestCase')

const MODULE_NAME = 'AWSLambdaTestCase'
const MODULE_VER = '0.6.0'
const MODULE_VER = '0.6.1'


class AWSLambdaTestCase {
Expand Down Expand Up @@ -32,8 +32,8 @@ class AWSLambdaTestCase {
}

this._lambda = new LambdaClient({
region: this.region,
credentials: fromIni({ profile: this.profile })
region: this._option.region,
credentials: fromIni({ profile: this._option.profile })
})

this._cases = []
Expand Down

0 comments on commit 7145512

Please sign in to comment.