From cf0ac7e33d1cecfa35c55c2193749eb1877cb35c Mon Sep 17 00:00:00 2001 From: Flavio Maria De Stefano Date: Fri, 18 May 2018 12:13:16 +0200 Subject: [PATCH] Typo on method name --- tests/Monolog/Handler/ErrorLogHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Monolog/Handler/ErrorLogHandlerTest.php b/tests/Monolog/Handler/ErrorLogHandlerTest.php index d230fb1f..16d8e47d 100644 --- a/tests/Monolog/Handler/ErrorLogHandlerTest.php +++ b/tests/Monolog/Handler/ErrorLogHandlerTest.php @@ -32,7 +32,7 @@ class ErrorLogHandlerTest extends TestCase * @expectedException InvalidArgumentException * @expectedExceptionMessage The given message type "42" is not supported */ - public function testShouldNotAcceptAnInvalidTypeOnContructor() + public function testShouldNotAcceptAnInvalidTypeOnConstructor() { new ErrorLogHandler(42); }