From ea49a7e50cce3b59f85f2794c366c44e622e80f1 Mon Sep 17 00:00:00 2001 From: Alan Hartless Date: Wed, 15 Feb 2017 02:14:30 -0600 Subject: [PATCH] Fixed PhpStorm namespace error --- tests/Api/Auth/BasicAuthTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()