mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Fixed broken tests following previous commits
This commit is contained in:
		@@ -88,14 +88,14 @@ class Authorization_Server_test extends PHPUnit_Framework_TestCase
 | 
			
		||||
    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()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user