Skip to content

Commit b48b4d1

Browse files
OrKoNDevtools-frontend LUCI CQ
authored andcommitted
Fix typo in crash dump handling code
Bug: none Change-Id: If28b859cee52891edd888a6d1e3fc36e70e6c98e Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6837821 Reviewed-by: Simon Zünd <[email protected]> Commit-Queue: Simon Zünd <[email protected]> Commit-Queue: Alex Rudenko <[email protected]> Auto-Submit: Alex Rudenko <[email protected]>
1 parent 573a76b commit b48b4d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/e2e_non_hosted/conductor/state-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class StateProvider {
118118
}
119119

120120
async closeBrowsers() {
121-
this.#settingToBrowser.values().next().value?.copyCrahsDumps();
121+
this.#settingToBrowser.values().next().value?.copyCrashDumps();
122122
await Promise.allSettled([...this.#settingToBrowser.values()].map(async browser => {
123123
await browser.browser.close();
124124
}));

test/e2e_non_hosted/shared/browser-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class BrowserWrapper {
2727
return await this.browser.createBrowserContext();
2828
}
2929

30-
copyCrahsDumps() {
30+
copyCrashDumps() {
3131
const crashesPath = this.#getCrashpadDir();
3232
if (!fs.existsSync(crashesPath)) {
3333
// TODO (liviurau): Determine where exactly does Crashpad store the dumps on

0 commit comments

Comments
 (0)