fix: possible test fix for subfolder redirect

This commit is contained in:
Barış Soner Uşaklı
2021-09-24 19:23:46 -04:00
parent 3479832593
commit 3605ac811d
2 changed files with 5 additions and 5 deletions

View File

@@ -413,7 +413,7 @@ describe('Controllers', () => {
});
assert.strictEqual(res.statusCode, 302);
assert.strictEqual(res.headers.location, '/');
assert.strictEqual(res.headers.location, `${nconf.get('relative_path')}/`);
});
});