Skip to content

Commit

Permalink
Fix names in AWSParams in integration_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Nov 28, 2023
1 parent d01acc8 commit b4cef05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration_tests/utils/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

def get_aws_params():
AWSParams = namedtuple("AWSParams", [
"aws_key_id", "aws_access_key", "aws_role",
"aws_access_key_id", "aws_secret_access_key", "aws_role",
"aws_region", "aws_s3_uri", "aws_conn_name"])

return AWSParams(
aws_key_id="",
aws_access_key="",
aws_access_key_id="",
aws_secret_access_key="",
aws_role="",
aws_region="eu-central-1",
aws_s3_uri="https://sagemaker-extension-bucket.s3.amazonaws.com",
Expand Down

0 comments on commit b4cef05

Please sign in to comment.