Passed
Push — master ( 8c3c69...9aadc1 )
by Kirill
03:21
created
src/Exceptions/tests/HandlerTest.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
     public function testHtmlHandlerDefaultBasic(): void
115 115
     {
116
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
116
+        $handler = new HtmlHandler(HtmlHandler::default);
117 117
 
118 118
         $result = $handler->renderException(new Error(
119 119
             'message',
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     {
165 165
         $this->markTestSkipped('FIXME: Very long execution time');
166 166
 
167
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
167
+        $handler = new HtmlHandler(HtmlHandler::default);
168 168
 
169 169
         $result = $handler->renderException(new Error(
170 170
             'message',
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 
246 246
     public function testHtmlHandlerStacktrace(): void
247 247
     {
248
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
248
+        $handler = new HtmlHandler(HtmlHandler::default);
249 249
 
250 250
         try {
251 251
             $this->makeException();
Please login to merge, or discard this patch.