Skip to content

Commit 3b26ef6

Browse files
committed
playwright: remove superfluous semicolons
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 0053f5f commit 3b26ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/git-scm.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ async function pretendPlatform(page, browserName, userAgent, platform) {
1616
// `Object.defineProperty()`, therefore we use the Chrome DevTools Protocol
1717
// with that browser (and only with that browser because it is proprietary
1818
// to that browser).
19-
const cdpSession = await page.context().newCDPSession(page);
20-
await cdpSession.send('Emulation.setUserAgentOverride', { platform, userAgent });
19+
const cdpSession = await page.context().newCDPSession(page)
20+
await cdpSession.send('Emulation.setUserAgentOverride', { platform, userAgent })
2121
}
2222
}
2323

0 commit comments

Comments
 (0)