Skip to content

Commit 9189205

Browse files
committed
Fix indentation inconsistency
1 parent ffb4366 commit 9189205

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webdriver-ts/src/benchmarksPuppeteer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ export const benchSwapRows = new (class extends CPUBenchmarkPuppeteer {
120120
await clickElement(page, "pierce/#run");
121121
await checkElementExists(page, "pierce/tbody>tr:nth-of-type(1000)>td:nth-of-type(1)");
122122
for (let i = 0; i <= config.WARMUP_COUNT; i++) {
123-
let text = i % 2 == 0 ? "2" : "999";
124-
await clickElement(page, "pierce/#swaprows");
125-
await checkElementContainsText(page, "pierce/tbody>tr:nth-of-type(999)>td:nth-of-type(1)", text);
123+
let text = i % 2 == 0 ? "2" : "999";
124+
await clickElement(page, "pierce/#swaprows");
125+
await checkElementContainsText(page, "pierce/tbody>tr:nth-of-type(999)>td:nth-of-type(1)", text);
126126
}
127127
}
128128
async run(page: Page) {

0 commit comments

Comments
 (0)