From cc78c2fd264d5f795c0706c550ace9d7eb24d178 Mon Sep 17 00:00:00 2001 From: Grzegorz Godlewski Date: Fri, 2 Aug 2024 13:03:24 +0200 Subject: [PATCH] build: fix broken e2e test assertion --- tests/e2e/resourceRentalPool.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/resourceRentalPool.spec.ts b/tests/e2e/resourceRentalPool.spec.ts index a07a971c0..8bf43e112 100644 --- a/tests/e2e/resourceRentalPool.spec.ts +++ b/tests/e2e/resourceRentalPool.spec.ts @@ -237,7 +237,7 @@ describe("ResourceRentalPool", () => { const rental = await pool.acquire(); await rental.getExeUnit(); await expect(rental.stopAndFinalize(10)).rejects.toThrow( - new GolemAbortError("The finalization of payment process has been aborted due to a timeout"), + new GolemAbortError("The finalization of payment process has been aborted"), ); });