Skip to content

Commit

Permalink
Fix flaky test due to encoded quotes in asserted html
Browse files Browse the repository at this point in the history
  • Loading branch information
ifox authored Oct 14, 2024
1 parent c5f6afe commit f93cd7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/Capsules/CapsulesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public function testCanSeeModelInListing()

$this->assertSee('Title');

$this->assertSee($model->title);
$this->assertSee(htmlspecialchars($model->title, ENT_QUOTES, 'UTF-8'));
}

public function testCanPublishModel()
Expand Down

0 comments on commit f93cd7e

Please sign in to comment.