Fix build

This commit is contained in:
Romain Neutron
2011-12-29 19:31:45 +01:00
parent adf7e62f20
commit 028b72f271
4 changed files with 4 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ class Bridge_Application extends PhraseanetWebTestCaseAuthenticatedAbstract
$crawler = $this->client->request('POST', '/bridge/manager/', array('ssel' => $basket->getId()));
$pageContent = $this->client->getResponse()->getContent();
$this->assertNotContains("Oups ! something went wrong !", $pageContent);
$this->assertTrue($this->client->getResponse()->isOk());
$this->assertEquals(count($accounts) + 2, $crawler->filter('form')->count());
$this->assertTrue($this->client->getResponse()->isOk());
}