diff --git a/tests/authorization/AuthServerTest.php b/tests/authorization/AuthServerTest.php index 616d85b1c..baf0af003 100644 --- a/tests/authorization/AuthServerTest.php +++ b/tests/authorization/AuthServerTest.php @@ -88,14 +88,14 @@ public function test_addGrantType_noIdentifier() public function test_getScopeDelimeter() { $a = $this->returnDefault(); - $this->assertEquals(',', $a->getScopeDelimeter()); + $this->assertEquals(' ', $a->getScopeDelimeter()); } public function test_setScopeDelimeter() { $a = $this->returnDefault(); - $a->setScopeDelimeter(';'); - $this->assertEquals(';', $a->getScopeDelimeter()); + $a->setScopeDelimeter(','); + $this->assertEquals(',', $a->getScopeDelimeter()); } public function test_requireScopeParam()