From 2248ec64b6fcaed866beb6448eefca21cbe1a202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 2 Dec 2015 09:21:29 +0100 Subject: [PATCH] Remove unused variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- .../ServerDatabasesControllerTest.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/test/classes/controllers/ServerDatabasesControllerTest.php b/test/classes/controllers/ServerDatabasesControllerTest.php index c4186c35e6..2ef9e15180 100644 --- a/test/classes/controllers/ServerDatabasesControllerTest.php +++ b/test/classes/controllers/ServerDatabasesControllerTest.php @@ -124,25 +124,7 @@ class ServerDatabasesControllerTest extends PHPUnit_Framework_TestCase $property->setAccessible(true); $property->setValue($ctrl, 'asc'); - $is_superuser = true; - $cfg = array( - "AllowUserDropDatabase" => false, - "ActionLinksMode" => "both", - ); $replication_types = array("master", "slave"); - $replication_info = array( - "master" => array( - "status" => true, - "Ignore_DB" => array("DB" => "Ignore_DB"), - "Do_DB" => array(""), - ), - "slave" => array( - "status" => false, - "Ignore_DB" => array("DB" => "Ignore_DB"), - "Do_DB" => array(""), - ), - ); - $url_query = "token=27ae04f0b003a84e5c2796182f361ff1"; $html = $method->invoke($ctrl, $replication_types);