Updated 404 test to not fail based on random long name

This commit is contained in:
Dan Brown 2018-09-21 15:24:29 +01:00
parent b59e5942c8
commit c8d893fac7
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -9,10 +9,13 @@ class ErrorTest extends TestCase
// if our custom, middleware-loaded handler fails but this is here
// as a reminder and as a general check in the event of other issues.
$editor = $this->getEditor();
$editor->name = 'tester';
$editor->save();
$this->actingAs($editor);
$notFound = $this->get('/fgfdngldfnotfound');
$notFound->assertStatus(404);
$notFound->assertDontSeeText('Log in');
$notFound->assertSeeText($editor->getShortName(9));
$notFound->assertSeeText('tester');
}
}