Commit 252c4855 authored by Sean McGivern's avatar Sean McGivern

Fix conflicts in issue_warning_spec.js

parent c387f004
......@@ -16,11 +16,7 @@ describe('Issue Warning Component', () => {
isLocked: true,
});
<<<<<<< HEAD
expect(vm.$el.querySelector('i').className).toEqual('fa fa-lock');
=======
expect(vm.$el.querySelector('i').className).toEqual('fa icon fa-lock');
>>>>>>> ce-com/master
expect(formatWarning(vm.$el.querySelector('span').textContent)).toEqual('This issue is locked. Only project members can comment.');
});
});
......@@ -31,11 +27,7 @@ describe('Issue Warning Component', () => {
isConfidential: true,
});
<<<<<<< HEAD
expect(vm.$el.querySelector('i').className).toEqual('fa fa-eye-slash');
=======
expect(vm.$el.querySelector('i').className).toEqual('fa icon fa-eye-slash');
>>>>>>> ce-com/master
expect(formatWarning(vm.$el.querySelector('span').textContent)).toEqual('This is a confidential issue. Your comment will not be visible to the public.');
});
});
......
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