black linting
This commit is contained in:
parent
fd9ac4b9a5
commit
743dd46399
36 changed files with 383 additions and 154 deletions
|
|
@ -34,7 +34,7 @@ def test_state_machine_creation_succeeds():
|
|||
response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
||||
response["creationDate"].should.be.a(datetime)
|
||||
response["stateMachineArn"].should.equal(
|
||||
"arn:aws:states:" + region + ":"+ACCOUNT_ID+":stateMachine:" + name
|
||||
"arn:aws:states:" + region + ":" + ACCOUNT_ID + ":stateMachine:" + name
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -286,7 +286,7 @@ def test_state_machine_can_deleted_nonexisting_machine():
|
|||
client = boto3.client("stepfunctions", region_name=region)
|
||||
#
|
||||
unknown_state_machine = (
|
||||
"arn:aws:states:" + region + ":"+ACCOUNT_ID+":stateMachine:unknown"
|
||||
"arn:aws:states:" + region + ":" + ACCOUNT_ID + ":stateMachine:unknown"
|
||||
)
|
||||
response = client.delete_state_machine(stateMachineArn=unknown_state_machine)
|
||||
response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue