Skip to content

Commit e5d071e

Browse files
committed
fixup! test: update all Web Platform Tests
1 parent 5efaff9 commit e5d071e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/common/wpt.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ class StatusRuleSet {
118118
if (key.includes('*')) {
119119
this.patternMatch.push(new StatusRule(key, rules[key], key));
120120
} else {
121-
this.exactMatch[key] = new StatusRule(key, rules[key]);
121+
const normalizedPath = path.normalize(key);
122+
this.exactMatch[normalizedPath] = new StatusRule(key, rules[key]);
122123
}
123124
}
124125
}

0 commit comments

Comments
 (0)