Commit 8404b973 by Ari Rizzitano

lintfixes

parent 4953c937
...@@ -10,7 +10,7 @@ describe('<CheckBox />', () => { ...@@ -10,7 +10,7 @@ describe('<CheckBox />', () => {
name="checkbox" name="checkbox"
label="check me out!" label="check me out!"
/>, />,
); );
expect(wrapper.find('[name="checkbox"]').exists()).toEqual(true); expect(wrapper.find('[name="checkbox"]').exists()).toEqual(true);
expect(wrapper.find('[type="checkbox"]').exists()).toEqual(true); expect(wrapper.find('[type="checkbox"]').exists()).toEqual(true);
...@@ -24,7 +24,7 @@ describe('<CheckBox />', () => { ...@@ -24,7 +24,7 @@ describe('<CheckBox />', () => {
name="checkbox" name="checkbox"
label="check me out!" label="check me out!"
/>, />,
); );
expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true); expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true);
......
...@@ -120,7 +120,7 @@ class Dropdown extends React.Component { ...@@ -120,7 +120,7 @@ class Dropdown extends React.Component {
<div <div
className={classNames([ className={classNames([
styles.dropdown, styles.dropdown,
{ [styles.show]: this.state.open }, { [styles.show]: this.state.open },
])} ])}
ref={(container) => { this.container = container; }} ref={(container) => { this.container = container; }}
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment