1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Changed tests

This commit is contained in:
Nicolas Lœuillet 2016-09-08 16:00:39 +02:00 committed by Jeremy Benoist
parent 821bb87685
commit 71254701b7
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
3 changed files with 4 additions and 4 deletions

View file

@ -639,7 +639,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
$crawler = $client->request('GET', '/config');
$deleteLink = $crawler->filter('.red')->last()->link();
$deleteLink = $crawler->filter('.delete-account')->last()->link();
$client->click($deleteLink);
$this->assertEquals(302, $client->getResponse()->getStatusCode());
@ -653,6 +653,6 @@ class ConfigControllerTest extends WallabagCoreTestCase
->getOneOrNullResult()
;
$this->assertTrue(false !== $user);
$this->assertNull($user);
}
}