Skip to content

Commit da80267

Browse files
Update __tests__/helper.test.ts
Co-authored-by: Demian Katz <demian.katz@villanova.edu>
1 parent 32fc3ba commit da80267

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

__tests__/helper.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ describe("Helper", () => {
6262
locale: "cy",
6363
});
6464
const metadataGroups = helper.getMetadata();
65-
const summary = [getMetadataValue(metadataGroups, "summary")];
66-
const description = [getMetadataValue(metadataGroups, "description")];
67-
expect(description[0]).toEqual(["Bride of the Tomb"]);
68-
expect(summary[0]).toEqual([]);
65+
const summary = getMetadataValue(metadataGroups, "summary");
66+
const description = getMetadataValue(metadataGroups, "description");
67+
expect(description).toEqual(["Bride of the Tomb"]);
68+
expect(summary).toEqual([]);
6969
});
7070

7171
test("getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest", async () => {

0 commit comments

Comments
 (0)