From c98f85b88b5c5ac575e4764f0ee2a861841a7ba1 Mon Sep 17 00:00:00 2001 From: Scott Cooper Date: Wed, 16 Oct 2024 15:48:17 -0700 Subject: [PATCH] update test copy --- .../views/issueDetails/streamline/eventNavigation.spec.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app/views/issueDetails/streamline/eventNavigation.spec.tsx b/static/app/views/issueDetails/streamline/eventNavigation.spec.tsx index 1f067e81471f5b..8a5ac19920e0db 100644 --- a/static/app/views/issueDetails/streamline/eventNavigation.spec.tsx +++ b/static/app/views/issueDetails/streamline/eventNavigation.spec.tsx @@ -128,13 +128,13 @@ describe('EventNavigation', () => { expect(screen.queryByText('Jump To:')).not.toBeInTheDocument(); expect(screen.queryByText('Replay')).not.toBeInTheDocument(); expect(screen.queryByText('Tags')).not.toBeInTheDocument(); - expect(screen.queryByText('Event Highlights')).not.toBeInTheDocument(); + expect(screen.queryByText('Highlights')).not.toBeInTheDocument(); }); it('does show jump to sections when the sections render', () => { render(); expect(screen.getByText('Jump to:')).toBeInTheDocument(); - expect(screen.getByText('Event Highlights')).toBeInTheDocument(); + expect(screen.getByText('Highlights')).toBeInTheDocument(); expect(screen.getByText('Replay')).toBeInTheDocument(); expect(screen.getByText('Tags')).toBeInTheDocument(); });