From 5f172c3a981b22313b58cab020d904065a692195 Mon Sep 17 00:00:00 2001 From: Michael Qian Date: Wed, 17 Jun 2026 14:19:12 -0700 Subject: [PATCH] Attempt to reproduce flaky test failure --- cirq-google/cirq_google/engine/engine_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cirq-google/cirq_google/engine/engine_test.py b/cirq-google/cirq_google/engine/engine_test.py index 0047a550617..b3380b300ee 100644 --- a/cirq-google/cirq_google/engine/engine_test.py +++ b/cirq-google/cirq_google/engine/engine_test.py @@ -270,6 +270,7 @@ def test_run_circuit_with_unary_rpcs(client, compress_run_context): ) assert result.repetitions == 1 + assert result.repetitions - 1 == 0 # trivial change assert result.params.param_dict == {'a': 1} assert result.measurements == {'q': np.array([[0]], dtype='uint8')} client.assert_called_with(service_args={'client_info': 1}, verbose=None)