Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 13:40:50 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 13:40:50 +0300
commitab6772f4f74151f58e9dd1b22f35ed74c687bf47 (patch)
tree913521093fd1d8ac4190b723624178d4e9be8c15 /test
parent761403517e3ace7e477eee0bae4288926774c526 (diff)
Pass db name to fix the tests
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/classes/schema/Export_Relation_Schema_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/classes/schema/Export_Relation_Schema_test.php b/test/classes/schema/Export_Relation_Schema_test.php
index d60ebebedc..573e345c4b 100644
--- a/test/classes/schema/Export_Relation_Schema_test.php
+++ b/test/classes/schema/Export_Relation_Schema_test.php
@@ -37,7 +37,7 @@ class PMA_Export_Relation_Schema_Test extends PHPUnit_Framework_TestCase
protected function setUp()
{
$_REQUEST['page_number'] = 33;
- $this->object = new PMA_Export_Relation_Schema(null);
+ $this->object = new PMA_Export_Relation_Schema('information_schema', null);
}
/**