Skip to content

Commit

Permalink
Clean up; fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mjac0bs committed Sep 5, 2024
1 parent f093384 commit ccea1bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/manager/src/features/Events/EventRow.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ describe('EventRow', () => {
name: /Two-factor authentication has been enabled./i,
})
).toBeInTheDocument();
expect(getByRole('cell', { name: 'test_user' })).toBeInTheDocument();
expect(getByRole('cell', { name: /test_user/i })).toBeInTheDocument();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const NotificationEventGravatar = styled(GravatarByUsername, {
}));

export const NotificationEventAvatar = styled(Avatar, {
label: 'StyledAvatarByUsername',
label: 'StyledAvatar',
})(() => ({
height: 32,
marginTop: 2,
Expand Down

0 comments on commit ccea1bd

Please sign in to comment.