mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-03 18:51:53 +05:30
Fixed broken tests following previous commits
This commit is contained in:
parent
1e57533127
commit
083a44df2e
@ -88,14 +88,14 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
|
|||||||
public function test_getScopeDelimeter()
|
public function test_getScopeDelimeter()
|
||||||
{
|
{
|
||||||
$a = $this->returnDefault();
|
$a = $this->returnDefault();
|
||||||
$this->assertEquals(',', $a->getScopeDelimeter());
|
$this->assertEquals(' ', $a->getScopeDelimeter());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_setScopeDelimeter()
|
public function test_setScopeDelimeter()
|
||||||
{
|
{
|
||||||
$a = $this->returnDefault();
|
$a = $this->returnDefault();
|
||||||
$a->setScopeDelimeter(';');
|
$a->setScopeDelimeter(',');
|
||||||
$this->assertEquals(';', $a->getScopeDelimeter());
|
$this->assertEquals(',', $a->getScopeDelimeter());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_requireScopeParam()
|
public function test_requireScopeParam()
|
||||||
|
Loading…
Reference in New Issue
Block a user