Browse Source

Fix camel case typo

Ross Chater 9 years ago
parent
commit
b0e953ec06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Http/MiddlewareQueueTest.php

+ 1 - 1
tests/TestCase/Http/MiddlewareQueueTest.php

@@ -234,7 +234,7 @@ class MiddlewareQueueTest extends TestCase
         };
         $two = function () {
         };
-        $three = new SampleMiddleWare();
+        $three = new SampleMiddleware();
 
         $queue = new MiddlewareQueue();
         $queue->add($one)->insertAt(-1, $two)->insertAt(-1, $three);