From 91e989090d8d11f5ac290f6ed796f66d55dd526a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:02:04 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_backends_global.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ) - -