From 638f3be8af5deda57ebdeff6580c151ae528ac2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 26 Mar 2014 16:23:02 +0100 Subject: [PATCH] Correct call to free method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- test/selenium/TestBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/selenium/TestBase.php b/test/selenium/TestBase.php index cdc0897d0a..b82176c979 100644 --- a/test/selenium/TestBase.php +++ b/test/selenium/TestBase.php @@ -188,7 +188,7 @@ abstract class PMA_SeleniumBase extends PHPUnit_Extensions_Selenium2TestCase { $result = $this->dbQuery('SELECT COUNT(*) FROM mysql.user'); if ($result !== false) { - $result::free(); + $result->free(); return true; } return false;