Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
tpetry authored and github-actions[bot] committed Sep 13, 2024
1 parent 5ad95bd commit e6dfe67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MysqlExplainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testSubmitQueryCollectsMetricsAndSubmitsThem(): void
->andReturn('mysql');
$mock->shouldReceive('queryScalar')
->withArgs([$connection, 'SELECT * FROM seq_1_to_1'])
->andThrow(new QueryException("SQLSTATE[42S02]: Base table or view not found: 1146 Table 'seq_1_to_1' doesn't exist.", 'SELECT * FROM seq_1_to_1', [], new RuntimeException()));
->andThrow(new QueryException("SQLSTATE[42S02]: Base table or view not found: 1146 Table 'seq_1_to_1' doesn't exist.", 'SELECT * FROM seq_1_to_1', [], new RuntimeException));
$mock->shouldReceive('queryScalar')
->withArgs([$connection, 'SELECT VERSION()'])
->andReturn('...version...');
Expand Down

0 comments on commit e6dfe67

Please sign in to comment.