Skip to content

Commit

Permalink
test(integration): Avoid false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Nov 5, 2024
1 parent 86e2474 commit 5b3c15f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/CapiRemediationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function testRefreshDecisions($requestHandler)
// Empty log file
file_put_contents($this->root->url() . '/' . $this->debugFile, '');
$result = $remediationEngine->refreshDecisions();
$this->assertTrue((int) $result['new'] >= 0), 'New decision should exists: ' . $result['new']);
$this->assertTrue((int) $result['new'] >= 0, 'New decision should exists: ' . $result['new']);

PHPUnitUtil::assertRegExp(
$this,
Expand Down

0 comments on commit 5b3c15f

Please sign in to comment.