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:
authorPhil Hughes <me@iamphill.com>2017-05-25 13:20:52 +0300
committerPhil Hughes <me@iamphill.com>2017-05-25 13:20:52 +0300
commit625d3442061d102f7020ef322c2c2febafc891aa (patch)
tree49e24dcf7f1fbc2664c8695a422cc3cdf61e8c53 /spec/javascripts
parentf452cb7733c1659c5c8de7f2b9fa7bc2bf077db7 (diff)
renamed path to web_url in endpoint
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/issue_show/components/app_spec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/javascripts/issue_show/components/app_spec.js b/spec/javascripts/issue_show/components/app_spec.js
index b9d352479c7..db146c4a1ee 100644
--- a/spec/javascripts/issue_show/components/app_spec.js
+++ b/spec/javascripts/issue_show/components/app_spec.js
@@ -116,7 +116,7 @@ describe('Issuable output', () => {
json() {
return {
confidential: false,
- path: location.pathname,
+ web_url: location.pathname,
};
},
});
@@ -140,7 +140,7 @@ describe('Issuable output', () => {
json() {
return {
confidential: true,
- path: location.pathname,
+ web_url: location.pathname,
};
},
});
@@ -182,7 +182,7 @@ describe('Issuable output', () => {
resolve({
json() {
return {
- path: location.pathname,
+ web_url: location.pathname,
confidential: vm.isConfidential,
};
},
@@ -206,7 +206,7 @@ describe('Issuable output', () => {
resolve({
json() {
return {
- path: '/testing-issue-move',
+ web_url: '/testing-issue-move',
confidential: vm.isConfidential,
};
},
@@ -251,7 +251,7 @@ describe('Issuable output', () => {
spyOn(vm.service, 'deleteIssuable').and.callFake(() => new Promise((resolve) => {
resolve({
json() {
- return { path: '/test' };
+ return { web_url: '/test' };
},
});
}));
@@ -273,7 +273,7 @@ describe('Issuable output', () => {
spyOn(vm.service, 'deleteIssuable').and.callFake(() => new Promise((resolve) => {
resolve({
json() {
- return { path: '/test' };
+ return { web_url: '/test' };
},
});
}));