Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-07-09 17:26:26 +0300
committerJulius Kvedaras <juliuskvedaras@yahoo.ie>2018-07-10 17:43:48 +0300
commit24aaeb92a7dda548f61c56d0c424c5ea935a07b3 (patch)
tree0dc6903109752bf4a6308d184b6d688ed5764335 /spec
parent2da13baad3f87b0f101a6205d5b24ef8fcc6315d (diff)
Merge branch '48960-namespace-diff-module' into 'master'
Resolve "Use namespaped module for diffs" Closes #48960 See merge request gitlab-org/gitlab-ce!20442
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/diffs/components/inline_diff_view_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/diffs/components/inline_diff_view_spec.js b/spec/javascripts/diffs/components/inline_diff_view_spec.js
index e1adf60962e..b02328dd359 100644
--- a/spec/javascripts/diffs/components/inline_diff_view_spec.js
+++ b/spec/javascripts/diffs/components/inline_diff_view_spec.js
@@ -13,7 +13,7 @@ describe('InlineDiffView', () => {
beforeEach(() => {
const diffFile = getDiffFileMock();
- store.dispatch('setInlineDiffViewType');
+ store.dispatch('diffs/setInlineDiffViewType');
component = createComponentWithStore(Vue.extend(InlineDiffView), store, {
diffFile,
diffLines: diffFile.highlightedDiffLines,