From f9bd543b02c2501251e344eefed5fa32b95a4c26 Mon Sep 17 00:00:00 2001 From: Andrea Date: Mon, 4 Dec 2023 18:10:24 +0400 Subject: [PATCH] Fix zh tests --- tests/test_instruments_zhinst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_instruments_zhinst.py b/tests/test_instruments_zhinst.py index e7cb3e6aeb..27396e3ac3 100644 --- a/tests/test_instruments_zhinst.py +++ b/tests/test_instruments_zhinst.py @@ -31,7 +31,7 @@ def test_zhpulse(shape): if shape == "Drag": pulse = Pulse(0, 40, 0.05, int(3e9), 0.0, Drag(5, 0.4), "ch0", qubit=0) if shape == "SNZ": - pulse = Pulse(0, 40, 0.05, int(3e9), 0.0, SNZ(10, 0.4), "ch0", qubit=0) + pulse = Pulse(0, 40, 0.05, int(3e9), 0.0, SNZ(10), "ch0", qubit=0) if shape == "IIR": pulse = Pulse(0, 40, 0.05, int(3e9), 0.0, IIR([10, 1], [0.4, 1], target=Gaussian(5)), "ch0", qubit=0)