Skip to content

Commit

Permalink
results for chrome 118
Browse files Browse the repository at this point in the history
  • Loading branch information
krausest committed Oct 16, 2023
1 parent 207e528 commit 51da158
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions webdriver-ts-results/src/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -616,16 +616,15 @@ export class ResultTableData {
let statisticalResult = undefined;
let statisticalCol = undefined;
const compareWithMean = compareWithResultsValues.mean;
const stdDev = compareWithResultsValues.standardDeviation || 0;
const compareWithResultsStdDev =
compareWithResultsValues.standardDeviation || 0;
const stdDev = resultValues.standardDeviation || 0;
const compareWithResultsStdDev = compareWithResultsValues.standardDeviation || 0;

const x1 = resultValues.mean;
const x2 = compareWithMean;
const s1_2 = stdDev * stdDev;
const s2_2 = compareWithResultsStdDev * compareWithResultsStdDev;
const n1 = 10;
const n2 = 10;
const n1 = compareWithResultsValues.values.length;
const n2 = resultValues.values.length;
const ny =
Math.pow(s1_2 / n1 + s2_2 / n2, 2) /
((s1_2 * s1_2) / (n1 * n1 * (n1 - 1)) +
Expand Down

0 comments on commit 51da158

Please sign in to comment.