forked from wallabag/wallabag
Fix PHPUnit deprecated warning
This commit is contained in:
@ -207,8 +207,8 @@ class EntryControllerTest extends WallabagCoreTestCase
|
|||||||
$authors = $content->getPublishedBy();
|
$authors = $content->getPublishedBy();
|
||||||
$this->assertSame('2017-04-05', $content->getPublishedAt()->format('Y-m-d'));
|
$this->assertSame('2017-04-05', $content->getPublishedAt()->format('Y-m-d'));
|
||||||
$this->assertSame('fr', $content->getLanguage());
|
$this->assertSame('fr', $content->getLanguage());
|
||||||
$this->assertContains('Balenieri', $authors[0]);
|
$this->assertStringContainsString('Balenieri', $authors[0]);
|
||||||
$this->assertContains('Autran', $authors[1]);
|
$this->assertStringContainsString('Autran', $authors[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPostNewOkUrlExist()
|
public function testPostNewOkUrlExist()
|
||||||
|
|||||||
Reference in New Issue
Block a user