Commit 0ce2d597 authored by Denys Mishunov's avatar Denys Mishunov

Removed redundant parentheses

parent 36cf5526
......@@ -80,8 +80,8 @@ describe('DiffExpansionCell', () => {
return mount(DiffExpansionCell, { store, propsData });
};
const findExpandUp = wrapper => wrapper.find(EXPAND_UP_CLASS);
const findExpandDown = wrapper => wrapper.find(EXPAND_DOWN_CLASS);
const findExpandUp = (wrapper) => wrapper.find(EXPAND_UP_CLASS);
const findExpandDown = (wrapper) => wrapper.find(EXPAND_DOWN_CLASS);
const findExpandAll = ({ element }) => getByText(element, 'Show all unchanged lines');
describe('top row', () => {
......
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