1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-12-23 23:02:08 +03:00

Updated test to align with export date format change

This commit is contained in:
Dan Brown
2021-05-30 13:23:51 +01:00
parent c4f5ab12cf
commit 7634ac4e12

View File

@@ -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());
}