Fixed regression test for tag edit redirects

refs bd92fcd282

- Referenced commit broke the regression test
This commit is contained in:
Nazar Gargol 2020-04-16 22:10:15 +12:00
parent 425ba6143e
commit 192cb107a5

View File

@ -270,7 +270,7 @@ describe('Dynamic Routing', function () {
it('should redirect to tag settings', function (done) {
request.get('/tag/getting-started/edit/')
.expect('Location', 'http://127.0.0.1:2369/ghost/#/settings/tags/getting-started/')
.expect('Location', 'http://127.0.0.1:2369/ghost/#/tags/getting-started/')
.expect('Cache-Control', testUtils.cacheRules.public)
.expect(302)
.end(doEnd(done));