Skip to content

Commit 357fdc0

Browse files
committed
Revert workaround for LG-5593
1 parent ca6e979 commit 357fdc0

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
@@ -34,8 +34,7 @@ describe('use-confirmation', function () {
3434
);
3535
userEvent.click(screen.getByText('Open Modal'));
3636
await waitFor(() => {
37-
// TODO: Change to 'confirmation-modal' when https://github.com/mongodb/leafygreen-ui/pull/3183 gets released
38-
modal = screen.getByTestId('lg-confirmation_modal');
37+
modal = screen.getByTestId('confirmation-modal');
3938
});
4039
});
4140

0 commit comments

Comments
 (0)