Skip to content

Commit

Permalink
refactor: test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Magnus-Kuhn committed Sep 24, 2024
1 parent 46631e9 commit 042f04b
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 @@ -121,7 +121,7 @@ describe("FileReference", function () {
expect(deserialized.id.toString()).toStrictEqual(reference.id.toString());
});

test("should truncate and read in correctly with backbone, password and personalization", async function () {
test("should truncate and read in correctly with backbone, identity, password", async function () {
const reference = FileReference.from({
key: await CryptoEncryption.generateKey(),
id: await BackboneIds.file.generateUnsafe(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ describe("RelationshipTemplateReference", function () {
expect(deserialized.id.toString()).toStrictEqual(reference.id.toString());
});

test("should truncate and read in correctly with backbone, password and personalization", async function () {
test("should truncate and read in correctly with backbone, identity, password", async function () {
const reference = RelationshipTemplateReference.from({
key: await CryptoEncryption.generateKey(),
id: await BackboneIds.relationshipTemplate.generateUnsafe(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ describe("TokenReference", function () {
expect(deserialized.id.toString()).toStrictEqual(reference.id.toString());
});

test("should truncate and read in correctly with backbone, password and personalization", async function () {
test("should truncate and read in correctly with backbone, identity, password", async function () {
const reference = TokenReference.from({
key: await CryptoEncryption.generateKey(),
id: await BackboneIds.token.generateUnsafe(),
Expand Down

0 comments on commit 042f04b

Please sign in to comment.