Skip to content

Commit 4f0f5a3

Browse files
giswqsmlanini
authored andcommitted
test(import): fix stale QGIS nested group name expectation (opengeos#1597)
opengeos#1593 changed QGIS layer-group names from flattened ("Transport / Places") to plain names plus a parentId. opengeos#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 86e8753 commit 4f0f5a3

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
@@ -291,7 +291,7 @@ describe("QGIS project import", () => {
291291
result.project.layerGroups?.map((group) => [group.name, group.visible]),
292292
[
293293
["Transport", false],
294-
["Transport / Places", false],
294+
["Places", false],
295295
],
296296
);
297297
const rendered = applyGroupEffects(result.project.layers, result.project.layerGroups ?? []);

0 commit comments

Comments
 (0)