Skip to content

Commit

Permalink
fix linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
jgzuke committed Sep 8, 2018
1 parent c02eaf9 commit f6787bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions packages/enzyme-test-suite/test/ReactWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5056,9 +5056,7 @@ describeWithDOM('mount', () => {
<span>
<Thrower throws={throws} />
<div>
{this.state.didThrow?
'HasThrown' : 'HasNotThrown'
}
{this.state.didThrow ? 'HasThrown' : 'HasNotThrown'}
</div>
</span>
</MaybeFragment>
Expand Down
4 changes: 1 addition & 3 deletions packages/enzyme-test-suite/test/ShallowWrapper-spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5090,9 +5090,7 @@ describe('shallow', () => {
<span>
<Thrower throws={throws} />
<div>
{this.state.didThrow?
'HasThrown' : 'HasNotThrown'
}
{this.state.didThrow ? 'HasThrown' : 'HasNotThrown'}
</div>
</span>
</MaybeFragment>
Expand Down

0 comments on commit f6787bd

Please sign in to comment.