Skip to content

Commit

Permalink
Fixed broken tests following previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbilbie committed May 9, 2013
1 parent 1e57533 commit 083a44d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/authorization/AuthServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 083a44d

Please sign in to comment.