summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 22:45:24 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 22:45:24 +0200
commit1fbe0ea4cf1abcd98bcaae5750e372c244e08aeb (patch)
tree95022bda57fe750c57b9aa79989692536f2f76d1 /utility
parent04d7d834f3192ea5b652f59a01bc80ac1ae961f0 (diff)
more style fixes
Diffstat (limited to 'utility')
-rw-r--r--utility/controllertestutility.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/controllertestutility.php b/utility/controllertestutility.php
index a0b81a226..3898e09b1 100644
--- a/utility/controllertestutility.php
+++ b/utility/controllertestutility.php
@@ -58,7 +58,7 @@ abstract class ControllerTestUtility extends \PHPUnit_Framework_TestCase {
* @param Response $response the response which we want to test for headers
*/
protected function assertHeaders(array $expected=array(), Response $response){
- $headers = $reponse->getHeaders();
+ $headers = $response->getHeaders();
foreach($expected as $header){
$this->assertTrue(in_array($header, $headers));
}