Index: TestCase.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/phpunit/lib/DrupalTest/TestCase.php,v
retrieving revision 1.3
diff -u -r1.3 TestCase.php
--- TestCase.php	24 Feb 2009 08:22:05 -0000	1.3
+++ TestCase.php	12 Mar 2009 05:08:55 -0000
@@ -34,7 +34,7 @@
    *
    * @return void
    */
-  public function setUp() {
+  protected function setUp() {
     parent::setUp();
     // Save the current working directory. 
     $this->currentWorkingDir = getcwd();
@@ -55,7 +55,7 @@
    *
    * @return void
    */
-  public function tearDown() {
+  protected function tearDown() {
     parent::tearDown();
     // Return us to our starting working directory. 
     chdir($this->currentWorkingDir);

