Skip to content

Commit

Permalink
misc: use more inclusive and descriptive language (GoogleChrome#10949)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored and George Martin committed Aug 28, 2020
1 parent fcb797a commit d1453cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/test/audits/user-timing-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Performance: user-timings audit', () => {
it('evaluates valid input correctly', () => {
const artifacts = generateArtifactsWithTrace(traceEvents);
return UserTimingsAudit.audit(artifacts, {computedCache: new Map()}).then(auditResult => {
const excludedUTs = auditResult.details.items.filter(timing => {
const excludedUTs = auditResult.extendedInfo.value.filter(timing => {
return UserTimingsAudit.excludedPrefixes.some(prefix => timing.name.startsWith(prefix));
});
assert.equal(excludedUTs.length, 0, 'excluded usertimings included in results');
Expand Down

0 comments on commit d1453cc

Please sign in to comment.