Skip to content

Commit

Permalink
[test] Verify a quilted ImageList is created as test title suggests (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sachs authored Nov 13, 2021
1 parent c3fc8b8 commit 00a2a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-material/src/ImageList/ImageList.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ describe('<ImageList />', () => {

it('should render with the quilted class', () => {
const { getByTestId } = render(
<ImageList data-testid="test-root" variant="woven">
<ImageList data-testid="test-root" variant="quilted">
{children}
</ImageList>,
);

expect(getByTestId('test-root')).to.have.class(classes.root);
expect(getByTestId('test-root')).to.have.class(classes.woven);
expect(getByTestId('test-root')).to.have.class(classes.quilted);
});

it('should render with the woven class', () => {
Expand Down

0 comments on commit 00a2a75

Please sign in to comment.