diff --git a/packages/circuit-ui/components/Body/Body.spec.tsx b/packages/circuit-ui/components/Body/Body.spec.tsx index fd6a471bcb..af5f680456 100644 --- a/packages/circuit-ui/components/Body/Body.spec.tsx +++ b/packages/circuit-ui/components/Body/Body.spec.tsx @@ -43,7 +43,8 @@ describe('Body', () => { }); it('should render the "highlight" variant as a "strong" element', () => { - const { container } = render(Highlight); + // eslint-disable-next-line @sumup-oss/circuit-ui/no-deprecated-props, @sumup-oss/circuit-ui/no-renamed-props + const { container } = render(Highlight); const actual = container.querySelector('strong'); expect(actual).toBeVisible(); });