Fix unit test for Session::checkSSO()

This commit is contained in:
Kijin Sung 2017-03-04 22:09:07 +09:00
parent 8cf3d7b520
commit f1608ad3a9

View file

@ -134,7 +134,7 @@ class SessionTest extends \Codeception\TestCase\Test
public function testCheckSSO()
{
$this->assertFalse(Rhymix\Framework\Session::checkSSO());
$this->assertNull(Rhymix\Framework\Session::checkSSO(new stdClass));
}
public function testRefresh()