From aa1e2145d0b6476c077bf38beadc65c7fdfc984e Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 1 Jun 2025 11:12:35 -0500 Subject: [PATCH] Fix NoteContent test --- src/components/NoteContent.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NoteContent.test.tsx b/src/components/NoteContent.test.tsx index b5e8257..a3244d1 100644 --- a/src/components/NoteContent.test.tsx +++ b/src/components/NoteContent.test.tsx @@ -131,6 +131,6 @@ describe('NoteContent', () => { // The text should start with @ and contain a generated name (not a truncated npub) const linkText = mention.textContent; expect(linkText).not.toMatch(/^@npub1/); // Should not be a truncated npub - expect(linkText).toEqual("@SwiftFalcon"); + expect(linkText).toEqual("@Swift Falcon"); }); }); \ No newline at end of file