Skip to content

Commit 0d7d632

Browse files
committed
Fix edge case jest
1 parent 6500ce1 commit 0d7d632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/issueDetails/streamline/issueTagsPreview.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ describe('IssueTagsPreview', () => {
127127
);
128128

129129
expect(await screen.findByText('Chrome')).toBeInTheDocument();
130-
expect(await screen.findByText('66%')).toBeInTheDocument();
130+
expect(await screen.findByText('67%')).toBeInTheDocument();
131131

132132
await userEvent.hover(screen.getByText('Chrome'));
133133
expect(await screen.findByText('Firefox')).toBeInTheDocument(); // tooltip description

0 commit comments

Comments
 (0)