From 6c37aab2c62afbe4887c524a8a0a023aea923cc9 Mon Sep 17 00:00:00 2001 From: cqc-melf <70640934+cqc-melf@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:32:07 +0000 Subject: [PATCH] Update conversion_test.py --- tests/conversion_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/conversion_test.py b/tests/conversion_test.py index fefc3a37..75e3af5f 100644 --- a/tests/conversion_test.py +++ b/tests/conversion_test.py @@ -123,10 +123,10 @@ def test_pytket_qir_6() -> None: def test_pytket_qir_7() -> None: # test calssical exp box handling circ = Circuit(2) - a = circ.add_c_register("a", 3) - b = circ.add_c_register("b", 3) - c = circ.add_c_register("c", 3) - d = circ.add_c_register("d", 3) + a = circ.add_c_register("A", 3) + b = circ.add_c_register("B", 3) + c = circ.add_c_register("C", 3) + d = circ.add_c_register("D", 3) circ.add_classicalexpbox_register(a & d, c) # type: ignore circ.add_classicalexpbox_register(a | b, c) # type: ignore circ.add_classicalexpbox_register(a ^ b, c) # type: ignore