From e915a18c73f86132e61d1062dc26caae0075d62e Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Thu, 3 Sep 2015 19:10:55 +0200 Subject: [PATCH] Remove not needed FQNs --- tests/Monolog/Handler/HipChatHandlerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Monolog/Handler/HipChatHandlerTest.php b/tests/Monolog/Handler/HipChatHandlerTest.php index 0ea738cd..462dac86 100644 --- a/tests/Monolog/Handler/HipChatHandlerTest.php +++ b/tests/Monolog/Handler/HipChatHandlerTest.php @@ -233,12 +233,12 @@ class HipChatHandlerTest extends TestCase */ public function testCreateWithTooLongName() { - $hipChatHandler = new \Monolog\Handler\HipChatHandler('token', 'room', 'SixteenCharsHere'); + $hipChatHandler = new HipChatHandler('token', 'room', 'SixteenCharsHere'); } public function testCreateWithTooLongNameV2() { // creating a handler with too long of a name but using the v2 api doesn't matter. - $hipChatHandler = new \Monolog\Handler\HipChatHandler('token', 'room', 'SixteenCharsHere', false, Logger::CRITICAL, true, true, 'test', 'api.hipchat.com', 'v2'); + $hipChatHandler = new HipChatHandler('token', 'room', 'SixteenCharsHere', false, Logger::CRITICAL, true, true, 'test', 'api.hipchat.com', 'v2'); } }