Skip to content

Commit 396a03e

Browse files
simonhampclaude
andcommitted
Fix test assertion to account for Flux component HTML escaping
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5d08f80 commit 396a03e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Feature/DashboardLayoutTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function test_user_name_with_apostrophe_is_not_double_escaped_in_dashboar
1919
$response = $this->withoutVite()->actingAs($user)->get('/dashboard');
2020

2121
$response->assertStatus(200);
22-
$response->assertDontSee('D&#039;Hooghe', false);
23-
$response->assertSee("Timmy D'Hooghe", false);
22+
$response->assertDontSee('D&amp;#039;Hooghe', false);
23+
$response->assertSee("Timmy D'Hooghe");
2424
}
2525
}

0 commit comments

Comments
 (0)