Skip to content

Commit

Permalink
WPCS
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsnell committed Sep 20, 2024
1 parent 570a039 commit d711216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/phpunit/tests/kses.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function data_wp_filter_post_kses_a() {
foreach ( $attributes as $name => $value ) {
if ( $value ) {
$attr = "$name='$value'";
$expected_attr = "$name=\"" . trim( $value, ';' ) . "\"";
$expected_attr = "$name=\"" . trim( $value, ';' ) . '"';
} else {
$attr = $name;
$expected_attr = $name;
Expand Down

0 comments on commit d711216

Please sign in to comment.