From 050907d5d562960bcf519ed7f1b457a18f9bad91 Mon Sep 17 00:00:00 2001 From: SS <66886825+EarlMilktea@users.noreply.github.com> Date: Sat, 29 Jun 2024 17:58:33 +0900 Subject: [PATCH] :bug: Fix invalid plane name --- tests/test_gflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_gflow.py b/tests/test_gflow.py index 59a2e62bc..9e02fbd2e 100644 --- a/tests/test_gflow.py +++ b/tests/test_gflow.py @@ -156,7 +156,7 @@ def _graph5() -> GraphForTest: graph = nx.Graph() graph.add_nodes_from(nodes) graph.add_edges_from(edges) - meas_planes = {0: "XY", 1: "XY", 2: "ZX", 3: "YZ"} + meas_planes = {0: "XY", 1: "XY", 2: "XZ", 3: "YZ"} return GraphForTest( graph, inputs,