lint fixes

This commit is contained in:
Keith Grant
2019-10-10 09:16:21 -07:00
parent 7ad2c03480
commit c7d73c4583
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ describe('<LabelSelect />', () => {
});
let wrapper;
await act(async () => {
wrapper = mount(<LabelSelect value={[]} onError={() => {}}/>);
wrapper = mount(<LabelSelect value={[]} onError={() => {}} />);
});
wrapper.update();

View File

@@ -25,7 +25,7 @@ describe('<PlaybookSelect />', () => {
projectId={1}
isValid
form={{}}
field={{onChange: () => {}, value: ''}}
field={{ onChange: () => {}, value: '' }}
onError={() => {}}
/>
);