Skip to content

Commit

Permalink
fixup! test: update all Web Platform Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Mar 3, 2021
1 parent 5efaff9 commit e5d071e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/common/wpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ class StatusRuleSet {
if (key.includes('*')) {
this.patternMatch.push(new StatusRule(key, rules[key], key));
} else {
this.exactMatch[key] = new StatusRule(key, rules[key]);
const normalizedPath = path.normalize(key);
this.exactMatch[normalizedPath] = new StatusRule(key, rules[key]);
}
}
}
Expand Down

0 comments on commit e5d071e

Please sign in to comment.