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
diff options
context:
space:
mode:
Diffstat (limited to 'test/libraries/PMA_tbl_relation_test.php')
-rw-r--r--test/libraries/PMA_tbl_relation_test.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/libraries/PMA_tbl_relation_test.php b/test/libraries/PMA_tbl_relation_test.php
index 9b609500b5..84889d1246 100644
--- a/test/libraries/PMA_tbl_relation_test.php
+++ b/test/libraries/PMA_tbl_relation_test.php
@@ -56,7 +56,8 @@ class PMA_TblRelationTest extends PHPUnit_Framework_TestCase
public function testPMAGetSQLToCreateForeignKey()
{
// @todo Move this test to PMA_Table_test
-/* $table = "PMA_table";
+ /*
+ $table = "PMA_table";
$field = array("PMA_field1", "PMA_field2");
$foreignDb = "foreignDb";
$foreignTable = "foreignTable";
@@ -71,7 +72,8 @@ class PMA_TblRelationTest extends PHPUnit_Framework_TestCase
$this->assertEquals(
$sql_excepted,
$sql
- );*/
+ );
+ */
}
/**
@@ -94,7 +96,7 @@ class PMA_TblRelationTest extends PHPUnit_Framework_TestCase
*/
public function testPMAGetQueryForDisplayUpdate()
{
- /*
+ /*
$disp = true;
$display_field = '';
$db = "pma_db";
@@ -188,4 +190,3 @@ Class DataBaseMockForTblRelation
return true;
}
}
-?>