You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertTrue(false !== self::$storage->read('simple_quote'), '->write() accepts single quotes in URL');
57
57
$this->assertTrue(false !== self::$storage->read('double_quote'), '->write() accepts double quotes in URL');
@@ -60,13 +60,13 @@ public function testStoreSpecialCharsInUrl()
60
60
61
61
publicfunctiontestStoreDuplicateToken()
62
62
{
63
-
$this->assertTrue(true === self::$storage->write('token', 'data', '127.0.0.1', 'http://foo.bar', time()), '->write() returns true when the token is unique');
64
-
$this->assertTrue(false === self::$storage->write('token', 'data', '127.0.0.1', 'http://foo.bar', time()), '->write() return false when the token is already present in the DB');
63
+
$this->assertTrue(true === self::$storage->write('token', '', 'data', '127.0.0.1', 'http://foo.bar', time()), '->write() returns true when the token is unique');
64
+
$this->assertTrue(false === self::$storage->write('token', '', 'data', '127.0.0.1', 'http://foo.bar', time()), '->write() return false when the token is already present in the DB');
0 commit comments