Skip to content

Commit

Permalink
Fix test that started to fail after weird changes in latest test-kit …
Browse files Browse the repository at this point in the history
…container
  • Loading branch information
donhardman committed Nov 2, 2023
1 parent a9383dd commit 3372c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Buddy/functional/AutoSchemaSupportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 3372c8e

Please sign in to comment.