diff options
author | Phil Hughes <me@iamphill.com> | 2017-05-25 11:20:52 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-05-25 11:20:52 +0100 |
commit | 625d3442061d102f7020ef322c2c2febafc891aa (patch) | |
tree | 49e24dcf7f1fbc2664c8695a422cc3cdf61e8c53 /spec | |
parent | f452cb7733c1659c5c8de7f2b9fa7bc2bf077db7 (diff) | |
download | gitlab-ce-625d3442061d102f7020ef322c2c2febafc891aa.tar.gz |
renamed path to web_url in endpoint
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/issue_show/components/app_spec.js | 12 |
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' }; }, }); })); |