From 122a8dfbfb70e46cd52ad6655b28ca44a3042294 Mon Sep 17 00:00:00 2001 From: Renato Mello Date: Wed, 28 Feb 2024 10:40:05 +0400 Subject: [PATCH] fix test --- tests/test_models_circuit_features.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_models_circuit_features.py b/tests/test_models_circuit_features.py index 9f36476ce7..d3e7a5f0a4 100644 --- a/tests/test_models_circuit_features.py +++ b/tests/test_models_circuit_features.py @@ -324,9 +324,9 @@ def test_repeated_execute_probs_and_freqs(backend, nqubits): # Tensorflow seems to yield different results with same seed if backend.__class__.__name__ == "TensorflowBackend": test_frequencies = ( - Counter({"1": 801, "0": 223}) + Counter({"1": 844, "0": 180}) if nqubits == 1 - else Counter({"11": 662, "10": 163, "01": 160, "00": 39}) + else Counter({"11": 674, "10": 155, "01": 154, "00": 41}) ) else: test_frequencies = (