From 476e8218a9cb60661a87abacbb7d55e04c14c42e Mon Sep 17 00:00:00 2001 From: bailey Date: Wed, 14 Jan 2026 14:13:18 -0700 Subject: [PATCH] fix phrasing and target --- .../transactions-convenient-api.prose.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/transactions-convenient-api/transactions-convenient-api.prose.test.ts b/test/integration/transactions-convenient-api/transactions-convenient-api.prose.test.ts index d1f0d6c56c5..ad508660b21 100644 --- a/test/integration/transactions-convenient-api/transactions-convenient-api.prose.test.ts +++ b/test/integration/transactions-convenient-api/transactions-convenient-api.prose.test.ts @@ -77,10 +77,10 @@ describe('Retry Backoff is Enforced', function () { }); // 5. Compare the two time between the two runs. - // The sum of 13 backoffs is roughly 2.2 seconds. There is a 1-second window to account for potential variance between the two runs. + // The sum of 13 backoffs is roughly 1.8 seconds. There is a half-second window to account for potential variance between the two runs. expect(fullBackoffDuration).to.be.within( - noBackoffTime + 2200 - 1000, - noBackoffTime + 2200 + 1000 + noBackoffTime + 1800 - 500, + noBackoffTime + 1800 + 500 ); } );