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/classes/plugin/import/ImportCsv_test.php')
-rw-r--r--test/classes/plugin/import/ImportCsv_test.php12
1 files changed, 2 insertions, 10 deletions
diff --git a/test/classes/plugin/import/ImportCsv_test.php b/test/classes/plugin/import/ImportCsv_test.php
index b1ac9c5e55..2707c0d859 100644
--- a/test/classes/plugin/import/ImportCsv_test.php
+++ b/test/classes/plugin/import/ImportCsv_test.php
@@ -145,10 +145,7 @@ class ImportCsv_Test extends PHPUnit_Framework_TestCase
$sql_query
);
}
- $this->assertContains(
- 'SET utf8 COLLATE utf8_general_ci',
- $sql_query
- );
+
$this->assertContains(
'CREATE TABLE IF NOT EXISTS `CSV_DB`.`TBL_NAME`',
$sql_query
@@ -158,7 +155,6 @@ class ImportCsv_Test extends PHPUnit_Framework_TestCase
true,
$GLOBALS['finished']
);
-
}
/**
@@ -211,10 +207,7 @@ class ImportCsv_Test extends PHPUnit_Framework_TestCase
$sql_query
);
}
- $this->assertContains(
- 'SET utf8 COLLATE utf8_general_ci',
- $sql_query
- );
+
$this->assertContains(
'CREATE TABLE IF NOT EXISTS `CSV_DB`.`TBL_NAME`',
$sql_query
@@ -224,6 +217,5 @@ class ImportCsv_Test extends PHPUnit_Framework_TestCase
true,
$GLOBALS['finished']
);
-
}
}