Skip to content

Commit 79cd47c

Browse files
committed
fix prettier
1 parent 3d4aeed commit 79cd47c

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

packages/ra-ui-materialui/src/input/RadioButtonGroupInput.spec.tsx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -558,16 +558,14 @@ describe('<RadioButtonGroupInput />', () => {
558558
</ResourceContextProvider>
559559
</AdminContext>
560560
);
561-
fireEvent.mouseDown(
562-
screen.getByLabelText('Mastercard')
563-
);
561+
fireEvent.mouseDown(screen.getByLabelText('Mastercard'));
564562

565-
expect(
566-
screen.getByText('VISA').getAttribute('class')
567-
).not.toContain('Mui-disabled');
568-
expect(
569-
screen.getByText('Mastercard').getAttribute('class')
570-
).toContain('Mui-disabled');
563+
expect(screen.getByText('VISA').getAttribute('class')).not.toContain(
564+
'Mui-disabled'
565+
);
566+
expect(screen.getByText('Mastercard').getAttribute('class')).toContain(
567+
'Mui-disabled'
568+
);
571569
});
572570

573571
describe('inside ReferenceArrayInput', () => {

0 commit comments

Comments
 (0)