Skip to content

Commit

Permalink
Fix doctrine query
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Sep 9, 2024
1 parent be1a8f6 commit f10bb81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/DebugBar/Tests/Browser/Bridge/DoctrineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public function testMonologCollector(): void
return $node->getText();
});

$this->assertEquals('INSERT INTO products (name) VALUES (?)', $statements[1]);
$this->assertCount(4, $statements);
$this->assertEquals('INSERT INTO products (name, updated) VALUES (?, ?)', $statements[1]);
$this->assertCount(5, $statements);
}

}

0 comments on commit f10bb81

Please sign in to comment.