Skip to content
Snippets Groups Projects
Commit 16f3ac9f authored by Vinciane's avatar Vinciane
Browse files

Correction 'ADMIN' userControllerTest

parent 1f5ccba3
No related branches found
No related tags found
No related merge requests found
...@@ -759,7 +759,7 @@ class UserControllerTest extends TestCase ...@@ -759,7 +759,7 @@ class UserControllerTest extends TestCase
$request = \Slim\Http\Request::createFromEnvironment($environment); $request = \Slim\Http\Request::createFromEnvironment($environment);
$aArgs = [ $aArgs = [
'firstname' => 'Super', 'firstname' => 'Super',
'lastname' => 'Admin', 'lastname' => 'ADMIN',
'mail' => 'dev@maarch.org', 'mail' => 'dev@maarch.org',
'initials' => 'SU' 'initials' => 'SU'
]; ];
...@@ -778,7 +778,7 @@ class UserControllerTest extends TestCase ...@@ -778,7 +778,7 @@ class UserControllerTest extends TestCase
$this->assertSame('superadmin', $responseBody->user_id); $this->assertSame('superadmin', $responseBody->user_id);
$this->assertSame('Super', $responseBody->firstname); $this->assertSame('Super', $responseBody->firstname);
$this->assertSame('Admin', $responseBody->lastname); $this->assertSame('ADMIN', $responseBody->lastname);
$this->assertSame('dev@maarch.org', $responseBody->mail); $this->assertSame('dev@maarch.org', $responseBody->mail);
$this->assertSame('SU', $responseBody->initials); $this->assertSame('SU', $responseBody->initials);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment