From 49c37b8a42cf6affc51b26b5a75c133525bee48e Mon Sep 17 00:00:00 2001 From: Spencer Churchill Date: Tue, 16 Apr 2024 13:06:21 -0700 Subject: [PATCH] fix tests --- tests/test_device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_device.py b/tests/test_device.py index f1b6b1e..8ca6ddd 100755 --- a/tests/test_device.py +++ b/tests/test_device.py @@ -349,11 +349,11 @@ def mock_submit_job(*args): "gate": "ms", "targets": [1, 2], "phases": [0.2, 0.3], - "rotation": 0.25, + "angle": 0.25, } assert dev.job["input"]["circuit"][3] == { "gate": "ms", "targets": [1, 2], "phases": [0.4, 0.5], - "rotation": 0.1, + "angle": 0.1, }