Skip to content

Commit

Permalink
fix: forgotten change in error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
britsta committed Dec 17, 2024
1 parent a665282 commit 03901ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ describe("ProposeAttributeRequestItemProcessor", function () {
expect(result).errorValidationResult({
code: "error.consumption.requests.invalidAcceptParameters",
message:
"This ProposeAttributeRequestItem cannot be accepted as the queried RelationshipAttribute cannot be created because there is already a RelationshipAttribute in the context of this Relationship with the same key 'uniqueKey', owner and value type."
"This ProposeAttributeRequestItem cannot be accepted as the queried RelationshipAttribute cannot be created because there is already a RelationshipAttribute in the context of this Relationship with the same key 'anotherUniqueKey', owner and value type."
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ describe("ReadAttributeRequestItemProcessor", function () {
expect(result).errorValidationResult({
code: "error.consumption.requests.invalidAcceptParameters",
message:
"This ReadAttributeRequestItem cannot be accepted as the queried RelationshipAttribute cannot be created because there is already a RelationshipAttribute in the context of this Relationship with the same key 'uniqueKey', owner and value type."
"This ReadAttributeRequestItem cannot be accepted as the queried RelationshipAttribute cannot be created because there is already a RelationshipAttribute in the context of this Relationship with the same key 'anotherUniqueKey', owner and value type."
});
});

Expand Down

0 comments on commit 03901ce

Please sign in to comment.