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:
authorBimal Yashodha <kb.yashodha@gmail.com>2014-07-23 15:29:30 +0400
committerBimal Yashodha <kb.yashodha@gmail.com>2014-07-23 15:29:30 +0400
commit4a0e45de5b13ab4ad2ac1e19381e973638d5ed07 (patch)
tree8ab5f83abff2d3af8c5590e0f54501b65d0d5cf3 /test
parente6232016a1d12126e2887ab5db3287fc26866cc2 (diff)
Fix undefined index
Signed-off-by: Bimal Yashodha <kb.yashodha@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/libraries/PMA_designer_test.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/libraries/PMA_designer_test.php b/test/libraries/PMA_designer_test.php
index 4ad3ad3c25..49afe75ed2 100644
--- a/test/libraries/PMA_designer_test.php
+++ b/test/libraries/PMA_designer_test.php
@@ -37,7 +37,11 @@ class PMA_DesginerTest extends PHPUnit_Framework_TestCase
$_SESSION = array(
'relation' => array(
- '1' => array('db' => 'pmadb', 'pdf_pages' => 'pdf_pages')
+ '1' => array(
+ 'db' => 'pmadb',
+ 'pdf_pages' => 'pdf_pages',
+ 'pdfwork' => true
+ )
),
' PMA_token ' => 'token'
);