mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Updated test to align with export date format change
This commit is contained in:
parent
c4f5ab12cf
commit
7634ac4e12
@ -145,9 +145,9 @@ class ExportTest extends TestCase
|
||||
$page = Page::first();
|
||||
|
||||
$resp = $this->asEditor()->get($page->getUrl('/export/html'));
|
||||
$resp->assertSee($page->created_at->toDayDateTimeString());
|
||||
$resp->assertSee($page->created_at->formatLocalized('%e %B %Y %H:%M:%S'));
|
||||
$resp->assertDontSee($page->created_at->diffForHumans());
|
||||
$resp->assertSee($page->updated_at->toDayDateTimeString());
|
||||
$resp->assertSee($page->updated_at->formatLocalized('%e %B %Y %H:%M:%S'));
|
||||
$resp->assertDontSee($page->updated_at->diffForHumans());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user