From 083a44df2e0f664ac8169b6f6c25acc1edd1a139 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Wed, 8 May 2013 18:10:43 -0700 Subject: [PATCH] Fixed broken tests following previous commits --- tests/authorization/AuthServerTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()