Skip to content

Commit 7828d5a

Browse files
committed
fix linting errors
1 parent c615cb4 commit 7828d5a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/components/themr.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ describe('Themr decorator function', () => {
250250
it('throws an error if an invalid composition option passed', () => {
251251
expect(() => {
252252
@themr('Container', null, { composeTheme: 'foo' })
253-
class Container extends Component {
253+
class Container extends Component { //eslint-disable-line no-unused-vars
254254
render() {
255255
return <Passthrough {...this.props} />
256256
}
@@ -369,16 +369,16 @@ describe('Themr decorator function', () => {
369369
it('should copy statics from ThemedComponent', () => {
370370
const propTypes = {
371371
foo: PropTypes.array
372-
};
372+
}
373373
const defaultProps = {
374374
foo: []
375-
};
375+
}
376376
@themr('Foo')
377377
class Foo extends Component {
378378
static propTypes = propTypes;
379379
static defaultProps = defaultProps;
380380
}
381-
expect(Foo.propTypes.foo).toBe(propTypes.foo);
382-
expect(Foo.defaultProps.foo).toBe(defaultProps.foo);
381+
expect(Foo.propTypes.foo).toBe(propTypes.foo)
382+
expect(Foo.defaultProps.foo).toBe(defaultProps.foo)
383383
})
384384
})

0 commit comments

Comments
 (0)