Skip to content

Commit

Permalink
Fixed PhpStorm namespace error
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhartless committed Feb 15, 2017
1 parent 775b27e commit ea49a7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Api/Auth/BasicAuthTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function setUp()
* Verify that the error handling in setup method is working
* - No Username
*
* @expectedException Mautic\Exception\RequiredParameterMissingException
* @expectedException \Mautic\Exception\RequiredParameterMissingException
* @expectedExceptionCode 500
*/
public function testParameterExceptionErrorNoUserName()
Expand All @@ -40,7 +40,7 @@ public function testParameterExceptionErrorNoUserName()
* Verify that the error handling in setup method is working
* - No Password
*
* @expectedException Mautic\Exception\RequiredParameterMissingException
* @expectedException \Mautic\Exception\RequiredParameterMissingException
* @expectedExceptionCode 500
*/
public function testParameterExceptionErrorNoPassword()
Expand All @@ -54,7 +54,7 @@ public function testParameterExceptionErrorNoPassword()
* Verify that the error handling in setup method is working
* - Empty Username
*
* @expectedException Mautic\Exception\RequiredParameterMissingException
* @expectedException \Mautic\Exception\RequiredParameterMissingException
* @expectedExceptionCode 500
*/
public function testParameterExceptionErrorEmptyUserName()
Expand All @@ -68,7 +68,7 @@ public function testParameterExceptionErrorEmptyUserName()
* Verify that the error handling in setup method is working
* - Empty password
*
* @expectedException Mautic\Exception\RequiredParameterMissingException
* @expectedException \Mautic\Exception\RequiredParameterMissingException
* @expectedExceptionCode 500
*/
public function testParameterExceptionErrorEmptyPassword()
Expand Down

0 comments on commit ea49a7e

Please sign in to comment.