From b32b8ade301ca4fb9df2e19ce81aa382b275342e Mon Sep 17 00:00:00 2001 From: minhaz Date: Sat, 1 Mar 2014 04:42:51 +0530 Subject: [PATCH] Test object unset on test completion The tearDown() function was kept empty without releasing resources of current object Signed-off-by: A V Minhaz --- test/classes/PMA_Config_test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/test/classes/PMA_Config_test.php b/test/classes/PMA_Config_test.php index f841b6b311..464d1c7a7d 100644 --- a/test/classes/PMA_Config_test.php +++ b/test/classes/PMA_Config_test.php @@ -57,6 +57,7 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase */ protected function tearDown() { + unset($this->object); } /**