Skip to content

Commit

Permalink
correct code to pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed May 30, 2024
1 parent 331b84a commit 016ca37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public String format(
case RETRIEVED_ARTIFACT_ID:
{
ApicurioRetrievableArtifactIdExFW ex = extension.retrievableArtifactId();
result = String.format(RETRIEVED_ARTIFACT_ID, ex.artifactId());
result = String.format("$d", ex.artifactId());
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ telemetry:
events:
- qname: test.app0
id: binding.tls.handshake.failed
name: HANDSHAKE_FAILED
name: BINDING_TLS_HANDSHAKE_FAILED
message: ""
vaults:
client:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ telemetry:
- qname: test.net0
id: model.json.validation.failed
name: MODEL_JSON_VALIDATION_FAILED
message: [1,10][/id] The value must be of string type, but actual type is integer.
message: "[1,10][/id] The value must be of string type, but actual type is integer."
catalogs:
test0:
type: test
Expand Down

0 comments on commit 016ca37

Please sign in to comment.