Skip to content

Commit a576afd

Browse files
Liviu RauDevtools-frontend LUCI CQ
authored andcommitted
[cleanup] Update some previously missed paths
Skip-Flake-Detection: test/e2e_non_hosted/sources/can-handle-special-characters_test.ts No-Tree-Checks: true Bug: 455490657 Change-Id: Ia73be3fbac4a051d1e6bdc38f4c41d9555223db5 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7171978 Commit-Queue: Liviu Rau <[email protected]> Reviewed-by: Samiya Caur <[email protected]>
1 parent 14222f4 commit a576afd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/e2e_non_hosted/helpers/sources-helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ export class WasmLocationLabels {
740740

741741
static load(source: string, wasm: string, devToolsPage: DevToolsPage, inspectedPage: InspectedPage):
742742
WasmLocationLabels {
743-
const mapFileName = path.join(GEN_DIR, 'test', 'e2e', 'resources', `${wasm}.map.json`);
743+
const mapFileName = path.join(GEN_DIR, 'test', 'e2e_non_hosted', 'resources', `${wasm}.map.json`);
744744
const mapFile = JSON.parse(fs.readFileSync(mapFileName, {encoding: 'utf-8'})) as Array<{
745745
source: string,
746746
generatedLine: number,

test/e2e_non_hosted/sources/can-handle-special-characters_test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ describe('Sources Tab', () => {
4242

4343
async function loadFromFilePath(devToolsPage: DevToolsPage, inspectedPage: InspectedPage) {
4444
const fileUrl = 'file://' +
45-
resolve(__dirname, '..', '..', 'e2e', 'resources', 'sources', 'filesystem', 'special-characters.html');
45+
resolve(__dirname, '..', '..', 'e2e_non_hosted', 'resources', 'sources', 'filesystem',
46+
'special-characters.html');
4647
await inspectedPage.goTo(fileUrl);
4748
await openSourcesPanel(devToolsPage);
4849
}

0 commit comments

Comments
 (0)