[BrowserKit] Using assertNull instead of assertEquals.

This commit is contained in:
Jakub Zalas 2012-04-07 18:45:48 +01:00
parent 87890d3a7c
commit df3da289ad

View File

@ -94,7 +94,7 @@ class CookieJarTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('bar', $barCookie->getValue());
$this->assertEquals('id', $phpCookie->getValue());
$this->assertEquals($timestamp, $fooCookie->getExpiresTime());
$this->assertEquals(null, $barCookie->getExpiresTime());
$this->assertNull($barCookie->getExpiresTime());
$this->assertEquals($timestamp, $phpCookie->getExpiresTime());
}