From 925f212e613ff48fd5340e5645ecc3b9c2cc4be5 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 2 Feb 2023 15:22:35 +0000 Subject: [PATCH] test: test for non overlapping configs fixed. --- tests/obs_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/obs_test.py b/tests/obs_test.py index 4741945a..37912913 100644 --- a/tests/obs_test.py +++ b/tests/obs_test.py @@ -1139,9 +1139,9 @@ def test_non_overlapping_operations_different_lengths(): lambda a, b: a ** b, lambda a, b: a ** 2 + b ** 2 / a]: - res1 = func(f1, f1) + res1 = func(f1, s1) res1.gm(S=0) - res2 = func(f2, f2) + res2 = func(f2, s2) res2.gm(S=0) assert np.isclose(res1.value, res2.value)