Browse Source

Fix typo.

mark_story 9 years ago
parent
commit
c849f80c21
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Http/ServerTest.php

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

@@ -191,7 +191,7 @@ class ServerTest extends TestCase
         });
         $server->run();
         $this->assertTrue($this->called, 'Middleware added in the event was not triggered.');
-        $this->assertInstanceOf('Closure', $this->middleware->get(3), '2nd last middleware is a clousure');
+        $this->assertInstanceOf('Closure', $this->middleware->get(3), '2nd last middleware is a closure');
         $this->assertSame($app, $this->middleware->get(4), 'Last middleware is an app instance');
     }
 }