From d70a7ce492ffe0b6ced08eccce7d4dbe46996f13 Mon Sep 17 00:00:00 2001 From: Renato Mello Date: Fri, 20 Sep 2024 09:11:06 +0400 Subject: [PATCH] fix test --- tests/test_quantum_info_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_quantum_info_operations.py b/tests/test_quantum_info_operations.py index db06c5599f..75ab6f225a 100644 --- a/tests/test_quantum_info_operations.py +++ b/tests/test_quantum_info_operations.py @@ -113,7 +113,7 @@ def test_partial_trace(backend, density_matrix): backend.assert_allclose(traced, Id) -@pytest.mark.parametrize(power, [2, 2.0, "2"]) +@pytest.mark.parametrize("power", [2, 2.0, "2"]) def test_matrix_power(backend, power): nqubits = 2 dims = 2**nqubits