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-07-13 15:54:06 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-13 15:54:06 +0300
commit1ed244db2506c58535dd842332c920c300a26da4 (patch)
tree9a991f935c2e0ac04c739a6c5281d6d352ed17e1 /test
parent90b5983ddf0183754a9ea166d697847de19fc2a4 (diff)
Fix test. Numeric indexes are being used to fetch value
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/libraries/PMA_structure_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libraries/PMA_structure_test.php b/test/libraries/PMA_structure_test.php
index 0cc505f287..eb8391dd0e 100644
--- a/test/libraries/PMA_structure_test.php
+++ b/test/libraries/PMA_structure_test.php
@@ -241,8 +241,8 @@ class PMA_Structure_Test extends PHPUnit_Framework_TestCase
->will(
$this->returnValue(
array(
- 'Table' => 'PMA_Table',
- 'Create Table' => $expected_result
+ 'PMA_Table',
+ $expected_result
)
)
);