Skip to content

Commit

Permalink
Merge pull request #17940 from eileenmcnaughton/abort
Browse files Browse the repository at this point in the history
Remove error checking by-pass in tests
  • Loading branch information
colemanw authored Jul 24, 2020
2 parents 2e5c996 + f875399 commit 3ee4c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Civi/Test/DbTestTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function assertDBQuery($expected, $query, $params = [], $message = '') {
$actual = \CRM_Core_DAO::singleValueQuery($query, $params);
$this->assertEquals($expected, $actual,
sprintf('%sexpected=[%s] actual=[%s] query=[%s]',
$message, $expected, $actual, \CRM_Core_DAO::composeQuery($query, $params, FALSE)
$message, $expected, $actual, \CRM_Core_DAO::composeQuery($query, $params)
)
);
}
Expand Down

0 comments on commit 3ee4c3c

Please sign in to comment.