Skip to content

Commit e32aaf0

Browse files
committed
Fix lint errors
1 parent 665c669 commit e32aaf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/php/test-class-amp-srcset-sanitizer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,18 @@ public function data_sanitize() {
8080
[ AMP_Tag_And_Attribute_Sanitizer::INVALID_ATTR_VALUE ],
8181
],
8282

83-
'amp_img_srcset_invalid_width_descriptor' => [
83+
'amp_img_srcset_invalid_width_descriptor' => [
8484
'<img src="https://example.com/image.jpg" height="100" width="200" srcset="https://example.com/image.jpg 5.2w">',
8585
'<img src="https://example.com/image.jpg" height="100" width="200">',
8686
[ AMP_Tag_And_Attribute_Sanitizer::INVALID_ATTR_VALUE ],
8787
],
8888

89-
'amp_img_srcset_valid_pixel_density' => [
89+
'amp_img_srcset_valid_pixel_density' => [
9090
'<img src="https://example.com/image.jpg" height="100" width="200" srcset="https://example.com/image.jpg 5x">',
9191
null,
9292
],
9393

94-
'amp_img_srcset_valid_float_pixel_density' => [
94+
'amp_img_srcset_valid_float_pixel_density' => [
9595
'<img src="https://example.com/image.jpg" height="100" width="200" srcset="https://example.com/image.jpg 5.2x">',
9696
null,
9797
],

0 commit comments

Comments
 (0)