Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed May 2, 2020
1 parent 59a434b commit 4904a06
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/material-ui-styles/src/makeStyles/makeStyles.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,7 @@ describe('makeStyles', () => {
act(() => {
wrapper.find('#color').simulate('change', { target: { value: 'blue' } });
});
expect(
sheetsRegistry.toString(),
expect(sheetsRegistry.toString()).to.equal(
`.makeStyles-root-4 {
color: blue;
background-color: black;
Expand All @@ -552,8 +551,7 @@ describe('makeStyles', () => {
act(() => {
wrapper.find('#background-color').simulate('change', { target: { value: 'green' } });
});
expect(
sheetsRegistry.toString(),
expect(sheetsRegistry.toString()).to.equal(
`.makeStyles-root-4 {
color: blue;
background-color: green;
Expand Down

0 comments on commit 4904a06

Please sign in to comment.