Skip to content

Commit

Permalink
change wording of test description
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeeshanTamboli committed Jun 18, 2024
1 parent eb86f77 commit 741e1cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-material/src/Stepper/Stepper.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ describe('<Stepper />', () => {
expect(stepContent[1]).to.have.class(stepContentClasses.last);
});

it('is applies non-linear styling', () => {
it('should apply non-linear class', () => {
const { container } = render(
<Stepper nonLinear activeStep={0}>
<Step />
Expand All @@ -269,6 +269,6 @@ describe('<Stepper />', () => {
);

const stepper = container.querySelector(`.${classes.root}`);
expect(stepper).to.have.class(classes.nonLinear)
expect(stepper).to.have.class(classes.nonLinear);
});
});

0 comments on commit 741e1cb

Please sign in to comment.