@@ -47,7 +47,7 @@ public function testCommand(): void
4747 $ this ->assertOutputContains ('INSERT INTO posts VALUES( ' );
4848 } elseif ($ this ->isDBType (Mysql::class)) {
4949 $ this ->assertOutputContains ('CREATE TABLE `posts` ( ' );
50- $ this ->assertOutputContains ('INSERT INTO `posts` VALUES ( ' );
50+ $ this ->assertOutputContains ('INSERT INTO `posts` VALUES ' );
5151 } elseif ($ this ->isDBType (Postgres::class)) {
5252 $ this ->assertOutputContains ('CREATE TABLE public.posts ' );
5353 $ this ->assertOutputContains ('COPY public.posts (id, title, created, modified) FROM stdin; ' );
@@ -72,7 +72,7 @@ public function testCommandDataOnly(): void
7272 $ this ->assertOutputContains ('INSERT INTO posts VALUES( ' );
7373 } elseif ($ this ->isDBType (Mysql::class)) {
7474 $ this ->assertOutputNotContains ('CREATE TABLE `posts` ( ' );
75- $ this ->assertOutputContains ('INSERT INTO `posts` VALUES ( ' );
75+ $ this ->assertOutputContains ('INSERT INTO `posts` VALUES ' );
7676 } elseif ($ this ->isDBType (Postgres::class)) {
7777 $ this ->assertOutputNotContains ('CREATE TABLE public.posts ' );
7878 $ this ->assertOutputContains ('COPY public.posts (id, title, created, modified) FROM stdin; ' );
@@ -103,7 +103,7 @@ public function testCommandGzipped(): void
103103 $ this ->assertStringContainsString ('INSERT INTO posts VALUES( ' , $ sql );
104104 } elseif ($ this ->isDBType (Mysql::class)) {
105105 $ this ->assertStringContainsString ('CREATE TABLE `posts` ( ' , $ sql );
106- $ this ->assertStringContainsString ('INSERT INTO `posts` VALUES ( ' , $ sql );
106+ $ this ->assertStringContainsString ('INSERT INTO `posts` VALUES ' , $ sql );
107107 } elseif ($ this ->isDBType (Postgres::class)) {
108108 $ this ->assertStringContainsString ('CREATE TABLE public.posts ' , $ sql );
109109 $ this ->assertStringContainsString ('COPY public.posts (id, title, created, modified) FROM stdin; ' , $ sql );
0 commit comments