From b0e953ec06fa9900a243f22036dfcb386329dfc5 Mon Sep 17 00:00:00 2001 From: Ross Chater Date: Wed, 25 Jan 2017 17:08:07 +0000 Subject: [PATCH] Fix camel case typo --- tests/TestCase/Http/MiddlewareQueueTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Http/MiddlewareQueueTest.php b/tests/TestCase/Http/MiddlewareQueueTest.php index 1d18fb256ec..552f94439ce 100644 --- a/tests/TestCase/Http/MiddlewareQueueTest.php +++ b/tests/TestCase/Http/MiddlewareQueueTest.php @@ -234,7 +234,7 @@ public function testInsertAtNegative() }; $two = function () { }; - $three = new SampleMiddleWare(); + $three = new SampleMiddleware(); $queue = new MiddlewareQueue(); $queue->add($one)->insertAt(-1, $two)->insertAt(-1, $three);