Skip to content

Commit 9778dd1

Browse files
committed
Merge pull request bshaffer#696 from kenshaw/develop
Fixing minor typo in Implicit grant type test
2 parents f6dcbba + 9af98ef commit 9778dd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/OAuth2/GrantType/ImplicitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function testSuccessfulRequestStripsExtraParameters()
125125
$this->assertArrayHasKey('fragment', $parts);
126126
parse_str($parts['fragment'], $params);
127127

128-
$this->assertFalse(isset($parmas['fake']));
128+
$this->assertFalse(isset($params['fake']));
129129
$this->assertArrayHasKey('state', $params);
130130
$this->assertEquals($params['state'], 'test');
131131
}

0 commit comments

Comments
 (0)