From f4a2f2ccd878b81665cc785704ba6e2a274186a0 Mon Sep 17 00:00:00 2001 From: Adrian Mak <3521998+damarkian@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:36:50 +0800 Subject: [PATCH] Update tests/test_ucc.py Co-authored-by: Wong ZC <70616433+chmwzc@users.noreply.github.com> --- tests/test_ucc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ucc.py b/tests/test_ucc.py index fa6d1e1..90ec930 100644 --- a/tests/test_ucc.py +++ b/tests/test_ucc.py @@ -185,7 +185,7 @@ def test_qeb_circuit(excitation, mapping, basis_rotations, coeffs): control_result = control_circuit(nshots=1) control_state = control_result.state(True) - test_circuit = qeb_circuit(n_qubits, excitation, theta=theta, trotter_steps=1) + test_circuit = qeb_circuit(n_qubits, excitation, theta=theta) test_result = test_circuit(nshots=1) test_state = test_result.state(True) assert np.allclose(control_state, test_state)