Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tunacicek committed Jul 18, 2023
1 parent 45bd0a0 commit b3a26ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions charts/registry/templates/tests/test-script-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ data:
Content-Type: application/json
Authorization: "Bearer {access_token}"
json:
id: !{decoded_shell_id}
id: "{decoded_shell_id:s}"
idShort: twin of a break (Testing)
response:
status_code: 201
Expand All @@ -112,7 +112,7 @@ data:
- name: Get shell descriptor by id
request:
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id}"
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id:s}"
method: GET
headers:
Content-Type: application/json
Expand All @@ -125,26 +125,26 @@ data:
description: []
displayName: []
idShort: twin of a break (Testing)
id: "{decoded_shell_id}"
id: "{decoded_shell_id:s}"
specificAssetIds: []
submodelDescriptors: []
- name: Update shell descriptor by id
request:
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id}"
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id:s}"
method: PUT
headers:
Content-Type: application/json
Authorization: "Bearer {access_token}"
json:
id: "{decoded_shell_id}"
id: "{decoded_shell_id:s}"
idShort: twin of a break (Testing Update)
response:
status_code: 204
- name: Delete shell descriptor by id
request:
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id}"
url: "{aas_registry_api_url:s}/api/v3.0/shell-descriptors/{encoded_shell_id:s}"
method: DELETE
headers:
Content-Type: application/json
Expand Down

0 comments on commit b3a26ba

Please sign in to comment.