diff --git a/test/Buddy/functional/AutoSchemaSupportTest.php b/test/Buddy/functional/AutoSchemaSupportTest.php index ccc81e54..a001cbbd 100644 --- a/test/Buddy/functional/AutoSchemaSupportTest.php +++ b/test/Buddy/functional/AutoSchemaSupportTest.php @@ -58,7 +58,7 @@ public function testAutoSchemaOptionDisabled(): void { $this->setUpAutoSchema(0); $query = "INSERT into {$this->testTable}(col1) VALUES(1) "; $out = static::runHttpQuery($query); - $result = [['total' => 0,'error' => "table 'test' absent, or does not support INSERT",'warning' => '']]; + $result = ['error' => "table 'test' absent, or does not support INSERT"]; $this->assertEquals($result, $out); }