From cbddc66547826053ab748ead73df9073d9eec0e3 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 14 May 2009 21:56:20 +0000 Subject: [PATCH] MINOR Fixed undefined variable in CMSMainTest git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@76877 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/CMSMainTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMSMainTest.php b/tests/CMSMainTest.php index e8ed96ae..017b2365 100644 --- a/tests/CMSMainTest.php +++ b/tests/CMSMainTest.php @@ -21,7 +21,7 @@ class CMSMainTest extends FunctionalTest { $response->getBody() ); - $response = Director::test("admin/cms/batchactions/publish", array('csvIDs' => '1,2', 'ajax' => 1), $session); + $response = Director::test("admin/cms/batchactions/publish", array('csvIDs' => '1,2', 'ajax' => 1), $this->session()); $this->assertContains('setNodeTitle(1, \'Page 1\');', $response->getBody()); $this->assertContains('setNodeTitle(2, \'Page 2\');', $response->getBody());