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:35:31 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 13:35:31 +0300
commit761403517e3ace7e477eee0bae4288926774c526 (patch)
treeb6787265717b3e0c93d48215fa5822a030e4c697 /test
parentddc820c5f014eb65b0862ad0ee86a3995bee70ca (diff)
parentcac6955baebb679d602e1b95c893b4671323350d (diff)
Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
Diffstat (limited to 'test')
-rw-r--r--test/classes/PMA_Footer_test.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/classes/PMA_Footer_test.php b/test/classes/PMA_Footer_test.php
index 47968d9d1b..3b64f7314d 100644
--- a/test/classes/PMA_Footer_test.php
+++ b/test/classes/PMA_Footer_test.php
@@ -111,23 +111,23 @@ class PMA_Footer_Test extends PHPUnit_Framework_TestCase
*/
public function testGetDebugMessage()
{
-
+ $GLOBALS['cfg']['DBG']['sql'] = true;
$_SESSION['debug']['queries'] = array(
- 'abc' => array(
+ array(
'count' => 1,
'time' => 0.2,
'query' => 'SELECT * FROM `pma_bookmark` WHERE 1',
),
- 'def' => array(
+ array(
'count' => 1,
'time' => 2.5,
'query' => 'SELECT * FROM `db` WHERE 1',
),
);
- $this->assertRegExp(
- '/<div id="session_debug">2 queries executed 2 times in 2.7 seconds'
- . '<pre>/',
+ $this->assertEquals(
+ '{"queries":[{"count":1,"time":0.2,"query":"SELECT * FROM `pma_bookmark` WHERE 1"},'
+ . '{"count":1,"time":2.5,"query":"SELECT * FROM `db` WHERE 1"}]}',
$this->object->getDebugMessage()
);
}