diff --git a/tests/Api/Auth/BasicAuthTest.php b/tests/Api/Auth/BasicAuthTest.php index db77c4dc..4802e1b2 100644 --- a/tests/Api/Auth/BasicAuthTest.php +++ b/tests/Api/Auth/BasicAuthTest.php @@ -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() @@ -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() @@ -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() @@ -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()