Skip to content

Commit

Permalink
Update examples in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkilcommins committed Oct 13, 2023
1 parent e662f63 commit b662332
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions versions/1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ workflows:
value: $inputs.password
successCriteria:
# assertions to determine step was successful
- $statusCode == 200
- condition: $statusCode == 200
outputs:
# outputs from this step
tokenExpires: $response.header.X-Expires-After
Expand All @@ -192,7 +192,7 @@ workflows:
in: header
value: $steps.loginUser.outputs.sessionToken
successCriteria:
- $statusCode == 200
- condition: $statusCode == 200
outputs:
# outputs from this step
availablePets: $response.body
Expand Down Expand Up @@ -296,7 +296,7 @@ steps:
value: $inputs.password
successCriteria:
# assertions to determine step was successful
$statusCode == 200
- condition: $statusCode == 200
outputs:
# outputs from this step
tokenExpires: $response.header.X-Expires-After
Expand Down

0 comments on commit b662332

Please sign in to comment.