Skip to content

Commit d27f3cf

Browse files
committed
Update ticket number in tests
1 parent 35691e6 commit d27f3cf

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

tests/phpunit/tests/html-api/wpCssComplexSelectorList.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static function test_parse_complex_selector( string $input, int &$offset
2727
}
2828

2929
/**
30-
* @ticket TBD
30+
* @ticket 62653
3131
*/
3232
public function test_parse_complex_selector() {
3333
$input = 'el1 > .child#bar[baz=quux] , rest';
@@ -50,7 +50,7 @@ public function test_parse_complex_selector() {
5050
}
5151

5252
/**
53-
* @ticket TBD
53+
* @ticket 62653
5454
*/
5555
public function test_parse_invalid_complex_selector() {
5656
$input = 'el.foo#bar[baz=quux] > , rest';
@@ -60,7 +60,7 @@ public function test_parse_invalid_complex_selector() {
6060
}
6161

6262
/**
63-
* @ticket TBD
63+
* @ticket 62653
6464
*/
6565
public function test_parse_invalid_complex_selector_nonfinal_subclass() {
6666
$input = 'el.foo#bar[baz=quux] > final, rest';
@@ -70,7 +70,7 @@ public function test_parse_invalid_complex_selector_nonfinal_subclass() {
7070
}
7171

7272
/**
73-
* @ticket TBD
73+
* @ticket 62653
7474
*/
7575
public function test_parse_empty_complex_selector() {
7676
$input = '';
@@ -80,7 +80,7 @@ public function test_parse_empty_complex_selector() {
8080
}
8181

8282
/**
83-
* @ticket TBD
83+
* @ticket 62653
8484
*/
8585
public function test_parse_complex_selector_list() {
8686
$input = 'el1 el2 el.foo#bar[baz=quux], second > selector';
@@ -89,7 +89,7 @@ public function test_parse_complex_selector_list() {
8989
}
9090

9191
/**
92-
* @ticket TBD
92+
* @ticket 62653
9393
*/
9494
public function test_parse_invalid_selector_list() {
9595
$input = 'el,,';
@@ -98,7 +98,7 @@ public function test_parse_invalid_selector_list() {
9898
}
9999

100100
/**
101-
* @ticket TBD
101+
* @ticket 62653
102102
*/
103103
public function test_parse_invalid_selector_list2() {
104104
$input = 'el!';
@@ -107,7 +107,7 @@ public function test_parse_invalid_selector_list2() {
107107
}
108108

109109
/**
110-
* @ticket TBD
110+
* @ticket 62653
111111
*/
112112
public function test_parse_empty_selector_list() {
113113
$input = " \t \t\n\r\f";

tests/phpunit/tests/html-api/wpCssCompoundSelectorList.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public static function data_idents(): array {
114114
}
115115

116116
/**
117-
* @ticket TBD
117+
* @ticket 62653
118118
*/
119119
public function test_is_ident_and_is_ident_start() {
120120
$this->assertFalse( $this->test_class::test_is_ident_codepoint( '[', 0 ) );
@@ -124,7 +124,7 @@ public function test_is_ident_and_is_ident_start() {
124124
}
125125

126126
/**
127-
* @ticket TBD
127+
* @ticket 62653
128128
*
129129
* @dataProvider data_idents
130130
*/
@@ -141,7 +141,7 @@ public function test_parse_ident( string $input, ?string $expected = null, ?stri
141141
}
142142

143143
/**
144-
* @ticket TBD
144+
* @ticket 62653
145145
*
146146
* @dataProvider data_strings
147147
*/
@@ -192,7 +192,7 @@ public static function data_strings(): array {
192192
}
193193

194194
/**
195-
* @ticket TBD
195+
* @ticket 62653
196196
*
197197
* @dataProvider data_id_selectors
198198
*/
@@ -226,7 +226,7 @@ public static function data_id_selectors(): array {
226226
}
227227

228228
/**
229-
* @ticket TBD
229+
* @ticket 62653
230230
*
231231
* @dataProvider data_class_selectors
232232
*/
@@ -260,7 +260,7 @@ public static function data_class_selectors(): array {
260260
}
261261

262262
/**
263-
* @ticket TBD
263+
* @ticket 62653
264264
*
265265
* @dataProvider data_type_selectors
266266
*/
@@ -296,7 +296,7 @@ public static function data_type_selectors(): array {
296296
}
297297

298298
/**
299-
* @ticket TBD
299+
* @ticket 62653
300300
*
301301
* @dataProvider data_attribute_selectors
302302
*/
@@ -371,7 +371,7 @@ public static function data_attribute_selectors(): array {
371371
}
372372

373373
/**
374-
* @ticket TBD
374+
* @ticket 62653
375375
*/
376376
public function test_parse_selector() {
377377
$input = 'el.foo#bar[baz=quux] > .child';
@@ -389,7 +389,7 @@ public function test_parse_selector() {
389389
}
390390

391391
/**
392-
* @ticket TBD
392+
* @ticket 62653
393393
*/
394394
public function test_parse_empty_selector() {
395395
$input = '';
@@ -400,7 +400,7 @@ public function test_parse_empty_selector() {
400400
}
401401

402402
/**
403-
* @ticket TBD
403+
* @ticket 62653
404404
*/
405405
public function test_parse_selector_list() {
406406
$input = 'el1, el2, el.foo#bar[baz=quux]';
@@ -409,7 +409,7 @@ public function test_parse_selector_list() {
409409
}
410410

411411
/**
412-
* @ticket TBD
412+
* @ticket 62653
413413
*/
414414
public function test_parse_invalid_selector_list() {
415415
$input = 'el,,';
@@ -418,7 +418,7 @@ public function test_parse_invalid_selector_list() {
418418
}
419419

420420
/**
421-
* @ticket TBD
421+
* @ticket 62653
422422
*/
423423
public function test_parse_invalid_selector_list2() {
424424
$input = 'el!';
@@ -427,7 +427,7 @@ public function test_parse_invalid_selector_list2() {
427427
}
428428

429429
/**
430-
* @ticket TBD
430+
* @ticket 62653
431431
*/
432432
public function test_parse_empty_selector_list() {
433433
$input = " \t \t\n\r\f";

tests/phpunit/tests/html-api/wpHtmlProcessor-select.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
*/
1515
class Tests_HtmlApi_WpHtmlProcessor_Select extends WP_UnitTestCase {
1616
/**
17-
* @ticket TBD
17+
* @ticket 62653
1818
*/
1919
public function test_select_miss() {
2020
$processor = WP_HTML_Processor::create_full_parser( '<span>' );
2121
$this->assertFalse( $processor->select( 'div' ) );
2222
}
2323

2424
/**
25-
* @ticket TBD
25+
* @ticket 62653
2626
*
2727
* @dataProvider data_selectors
2828
*/
@@ -57,7 +57,7 @@ public static function data_selectors(): array {
5757
}
5858

5959
/**
60-
* @ticket TBD
60+
* @ticket 62653
6161
*
6262
* @expectedIncorrectUsage WP_HTML_Processor::select_all
6363
*

tests/phpunit/tests/html-api/wpHtmlTagProcessor-select.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
*/
1515
class Tests_HtmlApi_WpHtmlTagProcessor_Select extends WP_UnitTestCase {
1616
/**
17-
* @ticket TBD
17+
* @ticket 62653
1818
*/
1919
public function test_select_miss() {
2020
$processor = new WP_HTML_Tag_Processor( '<span>' );
2121
$this->assertFalse( $processor->select( 'div' ) );
2222
}
2323

2424
/**
25-
* @ticket TBD
25+
* @ticket 62653
2626
*
2727
* @dataProvider data_selectors
2828
*/
@@ -85,7 +85,7 @@ public static function data_selectors(): array {
8585
}
8686

8787
/**
88-
* @ticket TBD
88+
* @ticket 62653
8989
*
9090
* @expectedIncorrectUsage WP_HTML_Tag_Processor::select_all
9191
*

0 commit comments

Comments
 (0)