Skip to content

Commit 8cabd77

Browse files
committed
Revert workaround for LG-5593
1 parent 509a636 commit 8cabd77

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/compass-components/src/components/content-with-fallback.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ describe('ContentWithFallback', function () {
6666
'context-menu-container'
6767
);
6868
expect(confirmationModal.getAttribute('data-testid')).to.equal(
69-
// TODO: Change to 'confirmation-modal' when https://github.com/mongodb/leafygreen-ui/pull/3183 gets released
70-
'lg-confirmation_modal'
69+
'confirmation-modal'
7170
);
7271
});
7372

packages/compass-components/src/hooks/use-confirmation.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ describe('use-confirmation', function () {
3333
);
3434
userEvent.click(screen.getByText('Open Modal'));
3535
await waitFor(() => {
36-
// TODO: Change to 'confirmation-modal' when https://github.com/mongodb/leafygreen-ui/pull/3183 gets released
37-
modal = screen.getByTestId('lg-confirmation_modal');
36+
modal = screen.getByTestId('confirmation-modal');
3837
});
3938
});
4039

0 commit comments

Comments
 (0)