From 2584d17067060f27ab22cc380a181aab5ed502c1 Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Sun, 31 May 2026 00:09:33 +0800 Subject: [PATCH] Update tests to match show_interface_labels default change The default value of show_interface_labels has been changed to True. Update test expectations to match this new default. --- tests/controller/test_project.py | 2 +- tests/controller/test_topology.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/controller/test_project.py b/tests/controller/test_project.py index 24d8aa033..24f9314ce 100644 --- a/tests/controller/test_project.py +++ b/tests/controller/test_project.py @@ -75,7 +75,7 @@ async def test_json(): "scene_height": 1000, "zoom": 100, "show_grid": False, - "show_interface_labels": False, + "show_interface_labels": True, "show_layers": False, "snap_to_grid": False, "grid_size": 75, diff --git a/tests/controller/test_topology.py b/tests/controller/test_topology.py index 9e1f72f82..85492596c 100644 --- a/tests/controller/test_topology.py +++ b/tests/controller/test_topology.py @@ -45,7 +45,7 @@ async def test_project_to_topology_empty(tmpdir): "revision": GNS3_FILE_FORMAT_REVISION, "zoom": 100, "show_grid": False, - "show_interface_labels": False, + "show_interface_labels": True, "show_layers": False, "snap_to_grid": False, "grid_size": 75,