summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
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));
}