From 5be077cd838f0d74ac91751cd1f0da5724e3bbd8 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 16 Dec 2009 05:43:02 +0000 Subject: [PATCH] BUGFIX: fixed typing error (from r94721) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@95623 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/control/DirectorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/control/DirectorTest.php b/tests/control/DirectorTest.php index abc3a95fa..a83a541ae 100644 --- a/tests/control/DirectorTest.php +++ b/tests/control/DirectorTest.php @@ -147,7 +147,7 @@ class DirectorTest extends SapphireTest { $getresponse = Director::test($url, $fixture, null, strtoupper($method), null, null, $fixture); $this->assertType('SS_HTTPResponse', $getresponse, 'Director::test() returns SS_HTTPResponse'); - $this->assertEquals($fixture['somekey'], $getresponse->getBody(), 'Director::test() ' . $function); + $this->assertEquals($fixture['somekey'], $getresponse->getBody(), 'Director::test() ' . $testfunction); }