Skip to content
Snippets Groups Projects
Commit d794cf90 authored by Sigmund Augdal's avatar Sigmund Augdal
Browse files

assertEquals wants the expected value as first argument

parent f130545d
Branches
Tags
No related merge requests found
......@@ -122,7 +122,7 @@ class OAuth2Test extends \PHPUnit_Framework_TestCase
$this->assertEquals([], $e->getParams(), "query params are already added into url");
}
$this->assertEquals($state[OAuth2::AUTHID], 'oauth2', 'Ensure authsource name is presevered in state');
$this->assertEquals('oauth2', $state[OAuth2::AUTHID], 'Ensure authsource name is presevered in state');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment