diff --git a/src/settings/DeveloperSettingsTab.test.tsx b/src/settings/DeveloperSettingsTab.test.tsx index a824022f0..3abb4990a 100644 --- a/src/settings/DeveloperSettingsTab.test.tsx +++ b/src/settings/DeveloperSettingsTab.test.tsx @@ -436,7 +436,9 @@ describe("DeveloperSettingsTab", () => { expect(client.doesServerSupportUnstableFeature).toHaveBeenCalled(), ); - expect(screen.getByText(/Media key rotation: active \(5 participants\)/)).toBeInTheDocument(); + expect( + screen.getByText(/Media key rotation: active \(5 participants\)/), + ).toBeInTheDocument(); }); it("displays suppressed status when key rotation is suppressed", async () => { @@ -460,7 +462,11 @@ describe("DeveloperSettingsTab", () => { expect(client.doesServerSupportUnstableFeature).toHaveBeenCalled(), ); - expect(screen.getByText(/Media key rotation: suppressed, participant limit reached \(50 participants\)/)).toBeInTheDocument(); + expect( + screen.getByText( + /Media key rotation: suppressed, participant limit reached \(50 participants\)/, + ), + ).toBeInTheDocument(); }); it("does not render KeyRotationStatus when vm is not provided", async () => {