diff --git a/tests/test_backends_global.py b/tests/test_backends_global.py index 728f0bddfa..16ac92d258 100644 --- a/tests/test_backends_global.py +++ b/tests/test_backends_global.py @@ -148,11 +148,13 @@ def test_default_transpiler_sim(): and backend.qubits is None ) + CONNECTIVITY = [ [("A1", "A2"), ("A2", "A3"), ("A3", "A4"), ("A4", "A5")], [("A1", "A2")], [], -] +] + @pytest.mark.parametrize("connectivity", CONNECTIVITY) def test_default_transpiler_hw(connectivity): @@ -183,5 +185,3 @@ def natives(self): NativeGates.CZ in transpiler.native_gates and NativeGates.GPI2 in transpiler.native_gates ) - -