diff --git a/tests/unit/landing/components.test.tsx b/tests/unit/landing/components.test.tsx
index c1e5c733..9af3ddb5 100644
--- a/tests/unit/landing/components.test.tsx
+++ b/tests/unit/landing/components.test.tsx
@@ -66,13 +66,15 @@ describe("Hero", () => {
describe("TypingCursor", () => {
it("renders the first phrase", () => {
render();
- expect(screen.getByText("No signups. No accounts.")).toBeDefined();
+ expect(
+ screen.getByText("Your images never leave your server. Novel concept, right?"),
+ ).toBeDefined();
});
- it("uses a 3-second interval for rotation", () => {
+ it("uses a 5-second interval for rotation", () => {
vi.useFakeTimers();
render();
- const first = screen.getByText("No signups. No accounts.");
+ const first = screen.getByText("Your images never leave your server. Novel concept, right?");
expect(first).toBeDefined();
vi.useRealTimers();
});