Skip to content

Commit

Permalink
Update conversion_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf authored Mar 21, 2024
1 parent 8266a9b commit 6c37aab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/conversion_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6c37aab

Please sign in to comment.