Skip to content

Commit 6e4d338

Browse files
committed
fix webstorm inspections
1 parent be0c33b commit 6e4d338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/components/themr.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,14 @@ describe('Themr decorator function', () => {
248248
})
249249

250250
it('throws an error if an invalid composition option passed', () => {
251-
expect(() => (
251+
expect(() => {
252252
@themr('Container', null, { composeTheme: 'foo' })
253253
class Container extends Component {
254254
render() {
255255
return <Passthrough {...this.props} />
256256
}
257257
}
258-
)).toThrow(/composeTheme/)
258+
}).toThrow(/composeTheme/)
259259
})
260260

261261
it('works properly when no theme is provided', () => {

0 commit comments

Comments
 (0)