Skip to content

Commit

Permalink
Test for delimiter after exported trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
  • Loading branch information
MoonE committed Apr 1, 2024
1 parent e28e400 commit cc2ab4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/classes/Plugins/Export/ExportSqlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ public function testExportStructure(): void
$this->assertIsString($result);
$this->assertStringContainsString('-- Triggers test_table', $result);
$this->assertStringContainsString(
'CREATE TRIGGER `test_trigger` AFTER INSERT ON `test_table` FOR EACH ROW BEGIN END',
"CREATE TRIGGER `test_trigger` AFTER INSERT ON `test_table` FOR EACH ROW BEGIN END\n$$",
$result
);

Expand Down

0 comments on commit cc2ab4b

Please sign in to comment.