Skip to content

Commit 14c34b7

Browse files
committed
test(import): fix stale QGIS nested group name expectation
#1593 changed QGIS layer-group names from flattened ("Transport / Places") to plain names plus a parentId. #1584 branched before that change and added a visibility-inheritance test still asserting the flattened name, so main went red once both landed. The importer behavior is correct; only the expectation was stale.
1 parent e910e01 commit 14c34b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/qgis-project-import.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ describe("QGIS project import", () => {
292292
result.project.layerGroups?.map((group) => [group.name, group.visible]),
293293
[
294294
["Transport", false],
295-
["Transport / Places", false],
295+
["Places", false],
296296
],
297297
);
298298
const rendered = applyGroupEffects(result.project.layers, result.project.layerGroups ?? []);

0 commit comments

Comments
 (0)