Skip to content

Commit

Permalink
chore: PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Dec 2, 2024
1 parent 9e4df5a commit 294ded3
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 @@ -43,7 +43,7 @@ describe("AppStringProcessor", function () {
mockUiBridge.reset();
});

test("should process a URL", async function () {
test("should process an URL", async function () {
const result = await runtime1.stringProcessor.processURL("nmshd://qr#", runtime1Session.account);
expect(result.isError).toBeDefined();

Expand Down
2 changes: 1 addition & 1 deletion packages/transport/src/core/Reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class Reference extends Serializable implements IReference {

if (![3, 5].includes(splitted.length)) {
throw TransportCoreErrors.general.invalidTruncatedReference(
`A TruncatedReference must consist of either exactly 3 or exactly 5 components, but it consists of '${splitted.length}' components.`
`A truncated reference must consist of either exactly 3 or exactly 5 components, but it consists of '${splitted.length}' components.`
);
}

Expand Down

0 comments on commit 294ded3

Please sign in to comment.