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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-13 12:11:55 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-13 12:11:55 +0300
commitbc2f7ab125361e4180018b1b933f42a8709df356 (patch)
treecbdb7c268428bbf1bd1023cfd5865a530e91dc8f /spec/frontend/add_context_commits_modal/store
parent56a177ed56309f4742fe9f978adec394636bd7ca (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/add_context_commits_modal/store')
-rw-r--r--spec/frontend/add_context_commits_modal/store/mutations_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/add_context_commits_modal/store/mutations_spec.js b/spec/frontend/add_context_commits_modal/store/mutations_spec.js
index 2331a4af1bc..7517c1c391e 100644
--- a/spec/frontend/add_context_commits_modal/store/mutations_spec.js
+++ b/spec/frontend/add_context_commits_modal/store/mutations_spec.js
@@ -1,10 +1,10 @@
+import getDiffWithCommit from 'test_fixtures/merge_request_diffs/with_commit.json';
import { TEST_HOST } from 'helpers/test_constants';
import * as types from '~/add_context_commits_modal/store/mutation_types';
import mutations from '~/add_context_commits_modal/store/mutations';
-import getDiffWithCommit from '../../diffs/mock_data/diff_with_commit';
describe('AddContextCommitsModalStoreMutations', () => {
- const { commit } = getDiffWithCommit();
+ const { commit } = getDiffWithCommit;
describe('SET_BASE_CONFIG', () => {
it('should set contextCommitsPath, mergeRequestIid and projectId', () => {
const state = {};