Skip to content

Commit bc75f32

Browse files
authored
website: Fix test of error page text
1 parent 7902975 commit bc75f32

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/website/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ava.serial('website empty page results', async t => {
4242
// TODO: Validate default page according scope
4343
await tests.delay(5 * 1000); // Workaround for full page startup
4444
const resp = await tests.get(`http://${website.fqdn}/`).ok(res => [403, 200].includes(res.status));
45-
t.true(resp.text.includes("You don't have permission to access /"));
45+
t.true(resp.text.includes("You don't have permission to access"));
4646
await tests.remove('website', website);
4747
});
4848

0 commit comments

Comments
 (0)