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:
authorMarc Delisle <marc@infomarc.info>2015-07-07 13:57:14 +0300
committerMarc Delisle <marc@infomarc.info>2015-07-07 13:57:14 +0300
commitb0994d0507585bc791b3fc6f552f2a109bf13fcb (patch)
treee1eb8163632c4b98922e5b73e23230190181e97c /test
parent4962b4606241a3a2141462b394664b4297f22ec5 (diff)
parentc987104160d74e64f181f16d3636c4cacf63bfc8 (diff)
Merge pull request #1771 from madhuracj/rfe812
#812 store export definitions for reuse
Diffstat (limited to 'test')
-rw-r--r--test/libraries/PMA_display_export_test.php10
-rw-r--r--test/libraries/PMA_relation_cleanup_test.php1
2 files changed, 1 insertions, 10 deletions
diff --git a/test/libraries/PMA_display_export_test.php b/test/libraries/PMA_display_export_test.php
index 41357101f0..5cf00ecff2 100644
--- a/test/libraries/PMA_display_export_test.php
+++ b/test/libraries/PMA_display_export_test.php
@@ -180,16 +180,6 @@ class PMA_DisplayExport_Test extends PHPUnit_Framework_TestCase
$unlim_num_rows_str
);
- //validate 1: PMA_getHtmlForExportOptionHeader
- $this->assertContains(
- '<div class="exportoptions" id="header">',
- $html
- );
- $this->assertContains(
- __('Exporting databases from the current server'),
- $html
- );
-
//validate 2: PMA_getHtmlForExportOptionsMethod
$this->assertContains(
$cfg['Export']['method'],
diff --git a/test/libraries/PMA_relation_cleanup_test.php b/test/libraries/PMA_relation_cleanup_test.php
index 876fe6990c..3e4a456b85 100644
--- a/test/libraries/PMA_relation_cleanup_test.php
+++ b/test/libraries/PMA_relation_cleanup_test.php
@@ -55,6 +55,7 @@ class PMA_Relation_Cleanup_Test extends PHPUnit_Framework_TestCase
$GLOBALS['cfg']['Server']['savedsearches'] = 'savedsearches';
$GLOBALS['cfg']['Server']['central_columns'] = 'central_columns';
$GLOBALS['cfg']['Server']['designer_settings'] = 'designer_settings';
+ $GLOBALS['cfg']['Server']['exporttemplates'] = 'pma__exporttemplates';
$this->redefineRelation();
}