From 6b1a6d9856ec352c7de3a53b7d958f9d7fdbfd2d Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sun, 15 Jun 2008 14:20:44 +0000 Subject: [PATCH] MINOR Fixed simpletest require_once() git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56229 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/TestSession.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/TestSession.php b/dev/TestSession.php index d414d8759..06e1e3814 100644 --- a/dev/TestSession.php +++ b/dev/TestSession.php @@ -94,9 +94,9 @@ class TestSession { * Get the last response as a SimplePage object */ function lastPage() { - require_once("testing/simpletest/http.php"); - require_once("testing/simpletest/page.php"); - require_once("testing/simpletest/form.php"); + require_once("thirdparty/simpletest/http.php"); + require_once("thirdparty/simpletest/page.php"); + require_once("thirdparty/simpletest/form.php"); $builder = &new SimplePageBuilder(); $page = &$builder->parse(new TestSession_STResponseWrapper($this->lastResponse));