Skip to content

Commit

Permalink
[Tests] fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 9, 2018
1 parent c40c0fd commit 8bfad35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/enzyme-test-suite/test/ReactWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ describeWithDOM('mount', () => {
const { stateValue: val } = this.state;
return (
<div className={id}>
{val}
{String(val)}
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/enzyme-test-suite/test/ShallowWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ describe('shallow', () => {
const { stateValue: val } = this.state;
return (
<div className={id}>
{val}
{String(val)}
</div>
);
}
Expand Down

0 comments on commit 8bfad35

Please sign in to comment.