From 7df44e7cb1a0784a360a86bea467e5525cc50054 Mon Sep 17 00:00:00 2001 From: Marvin Bechtold Date: Fri, 17 May 2024 12:44:06 +0200 Subject: [PATCH] Fix test --- test/test_CKT_cutter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_CKT_cutter.py b/test/test_CKT_cutter.py index c3fe16f..e49a47b 100644 --- a/test/test_CKT_cutter.py +++ b/test/test_CKT_cutter.py @@ -107,7 +107,7 @@ def test_reconstruction_request(self): results_dict, coefficients, qubit_map, subobservables ) expected_result = { - "{0:b}".format(key).zfill(circuit.num_qubits()): val + "{0:b}".format(key).zfill(circuit.num_qubits): val for key, val in reconstructed_counts.items() }