Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb committed May 3, 2024
1 parent 3ee6b70 commit 2790aed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/e2e/onFCP-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ assert.strictEqual = function (actual, expected, message) {
(expected === 'good' || expected === 'needs-improvement') &&
actual !== expected
) {
console.warn(
`Overriding assert for Firefox. actual: ${actual} expected: ${expected}`,
console.error(
`Override assert for Firefox (actual: ${actual}, expected: ${expected})`,
);
return true;
}
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/onLCP-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ assert.strictEqual = function (actual, expected, message) {
(expected === 'good' || expected === 'needs-improvement') &&
actual !== expected
) {
console.warn(
`Overriding assert for Firefox. actual: ${actual} expected: ${expected}`,
console.error(
`Override assert for Firefox (actual: ${actual}, expected: ${expected})`,
);
return true;
}
Expand Down

0 comments on commit 2790aed

Please sign in to comment.