Index: modules/simpletest/tests/filetransfer.test =================================================================== RCS file: /cvs/drupal/drupal/modules/simpletest/tests/filetransfer.test,v retrieving revision 1.1 diff -u -r1.1 filetransfer.test --- modules/simpletest/tests/filetransfer.test 1 Jul 2009 13:44:53 -0000 1.1 +++ modules/simpletest/tests/filetransfer.test 12 Jul 2009 07:09:05 -0000 @@ -17,6 +17,7 @@ } function setUp() { + parent::setUp(); $this->testConnection = TestFileTransfer::factory(DRUPAL_ROOT, array('hostname' => $this->hostname, 'username' => $this->username, 'password' => $this->password, 'port' => $this->port)); } @@ -119,11 +120,7 @@ ); $received_commands = $this->testConnection->connection->flushCommands(); - dd($expected_commands); - dd($received_commands); $this->assertEqual($received_commands, $expected_commands, 'Expected copy files operations made to sites/all/modules/fake'); - - } }