File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -107,13 +107,11 @@ describe("List of specs", () => {
107
107
108
108
it ( "has series titles that look consistent with spec titles" , ( ) => {
109
109
// Note the WebRTC spec follows a slightly different pattern
110
- // TEMP (2021-12-23): 2 temp exceptions to the rule: the W3C API returns an
111
- // outdated title for fingerprinting-guidance (should get fixed soon),
112
- // and published version of CSS Images Level 4 has an obscure title à la
113
- // "CSS Image Values..." (should get fixed next time the spec gets published
114
- // to /TR)
110
+ // TEMP (2022-01-05): temp exception to the rule: published version of CSS
111
+ // Images Level 4 has an obscure title à la "CSS Image Values..."
112
+ // (should get fixed next time the spec gets published to /TR)
115
113
const wrong = specs . filter ( s => ! s . title . includes ( s . series . title ) )
116
- . filter ( s => ! [ "webrtc" , "fingerprinting-guidance" , " css-images-4"] . includes ( s . shortname ) ) ;
114
+ . filter ( s => ! [ "webrtc" , "css-images-4" ] . includes ( s . shortname ) ) ;
117
115
assert . deepStrictEqual ( wrong , [ ] ) ;
118
116
} ) ;
119
117
You can’t perform that action at this time.
0 commit comments