Skip to content

Commit

Permalink
Update backend_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sjdilkes committed Nov 8, 2024
1 parent e3ffea5 commit 7ead0a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,9 @@ def test_compilation_correctness(brisbane_backend: IBMQBackend) -> None:
c.CX(0, 3).CX(0, 4)
c.remove_blank_wires()
FlattenRelabelRegistersPass().apply(c)
c_pred = ConnectivityPredicate(cast(Architecture, brisbane_backend.backend_info.architecture))
c_pred = ConnectivityPredicate(
cast(Architecture, brisbane_backend.backend_info.architecture)
)
for ol in range(3):
p = brisbane_backend.default_compilation_pass(optimisation_level=ol)
cu = CompilationUnit(c)
Expand Down

0 comments on commit 7ead0a4

Please sign in to comment.