Correct method names and missing parent calls.

This commit is contained in:
euromark 2013-10-07 20:24:28 +02:00
parent cd3defcc0b
commit 7b57df5554
2 changed files with 3 additions and 2 deletions

View file

@ -124,12 +124,12 @@ class CakeSessionTest extends CakeTestCase {
*
* @return void
*/
public function teardown() {
public function tearDown() {
if (TestCakeSession::started()) {
session_write_close();
}
unset($_SESSION);
parent::teardown();
parent::tearDown();
}
/**

View file

@ -78,6 +78,7 @@ class FolderTest extends CakeTestCase {
rmdir(TMP . $dir);
}
}
parent::tearDown();
}
/**