We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56a4ff9 commit e12eab5Copy full SHA for e12eab5
tests/unit/test_processing.py
@@ -1123,9 +1123,11 @@ def test_get_codeartifact_command(pipeline_session):
1123
)
1124
1125
assert (
1126
- codeartifact_command
1127
- == "aws codeartifact login --tool pip --domain test-domain --domain-owner 012345678901 --repository test-repository --region us-west-2"
1128
- ) # noqa: E501
+ codeartifact_command == (
+ "aws codeartifact login --tool pip --domain test-domain ",
+ "--domain-owner 012345678901 --repository test-repository --region us-west-2"
1129
+ )
1130
1131
1132
1133
@patch("sagemaker.workflow.utilities._pipeline_config", MOCKED_PIPELINE_CONFIG)
0 commit comments