···8282});
83838484t.describe("moderationWarningTemplate - no labeler", (it) => {
8585- it("should show 'the post author' when labeler is null", () => {
8585+ it("should show 'the author.' when labeler is null", () => {
8686 const result = moderationWarningTemplate({
8787 labelDefinition: mockLabelDefinition,
8888 labeler: null,
···9191 const container = document.createElement("div");
9292 render(result, container);
9393 const warning = container.querySelector("moderation-warning");
9494- assertEquals(warning.getAttribute("labelerName"), "the post author");
9494+ assertEquals(warning.getAttribute("labelerName"), "the author.");
9595 });
96969797 it("should have null labelerLink when labeler is null", () => {