Skip to content

Commit

Permalink
Adjust tests
Browse files Browse the repository at this point in the history
Signed-off-by: Deven Bansod <devenbansod.bits@gmail.com>
  • Loading branch information
devenbansod committed Oct 14, 2016
1 parent c00cf34 commit 201ba09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/classes/plugin/export/ExportSqlTest.php
Expand Up @@ -592,7 +592,7 @@ public function testExportDBCreate()
$result = ob_get_clean();

$this->assertContains(
"DROP DATABASE `db`;\n",
"DROP DATABASE IF EXISTS `db`;\n",
$result
);

Expand Down Expand Up @@ -630,7 +630,7 @@ public function testExportDBCreate()
$result = ob_get_clean();

$this->assertContains(
"DROP DATABASE db;\n",
"DROP DATABASE IF EXISTS db;\n",
$result
);

Expand Down

0 comments on commit 201ba09

Please sign in to comment.