From 0b5ff6fe8b76603313e8252e7a81e4ad32a0fef3 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 15 Sep 2007 13:51:48 -0400 Subject: [PATCH] In the installer test, the welcome page is to be echo'd instead of return'd * UnitTest/InstallerTest.php: (TestInstallerFixture::_welcomePage) --- UnitTest/InstallerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnitTest/InstallerTest.php b/UnitTest/InstallerTest.php index c74d635..b64d116 100644 --- a/UnitTest/InstallerTest.php +++ b/UnitTest/InstallerTest.php @@ -69,7 +69,7 @@ class TestInstallerFixture extends BSInstaller protected function _welcomePage() { - return 'This is a welcome page.'; + echo 'This is a welcome page.'; } public function step1() -- 2.22.5