summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-04-24 17:38:48 +0100
committerFilipa Lacerda <filipa@gitlab.com>2018-04-24 17:38:48 +0100
commite73b9812461a196b62f5521159204f996227905f (patch)
tree06fb7473eebf89184577e64f19ce460cc92c731d
parent1aa11de13e322a9ec73fa1d7472735b25caeb71c (diff)
downloadgitlab-ce-e73b9812461a196b62f5521159204f996227905f.tar.gz
Update import on actions file to fix conflict when rewire plugin was added
-rw-r--r--spec/javascripts/ide/stores/actions_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/javascripts/ide/stores/actions_spec.js b/spec/javascripts/ide/stores/actions_spec.js
index 0d603fac463..b6eadf56f9d 100644
--- a/spec/javascripts/ide/stores/actions_spec.js
+++ b/spec/javascripts/ide/stores/actions_spec.js
@@ -1,4 +1,4 @@
-import actions, { stageAllChanges, unstageAllChanges } from '~/ide/stores/actions';
+import actions, { stageAllChanges, unstageAllChanges, toggleFileFinder } from '~/ide/stores/actions';
import store from '~/ide/stores';
import * as types from '~/ide/stores/mutation_types';
import router from '~/ide/ide_router';
@@ -343,7 +343,7 @@ describe('Multi-file store actions', () => {
describe('toggleFileFinder', () => {
it('commits TOGGLE_FILE_FINDER', done => {
testAction(
- actions.toggleFileFinder,
+ toggleFileFinder,
true,
null,
[{ type: 'TOGGLE_FILE_FINDER', payload: true }],