From 566486c50eab8b99d8e3f492a8de397181d9b9a8 Mon Sep 17 00:00:00 2001 From: woodser Date: Sat, 21 Dec 2024 10:32:33 -0500 Subject: [PATCH] update test to make or take offer with insufficient funds --- src/HavenoClient.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HavenoClient.test.ts b/src/HavenoClient.test.ts index 5a0e29e5..5e7a2da9 100644 --- a/src/HavenoClient.test.ts +++ b/src/HavenoClient.test.ts @@ -1995,7 +1995,7 @@ test("Can go offline while resolving a dispute (CI)", async () => { if (err) throw err; }); -test("Cannot make or take offer with insufficient unlocked funds (CI, sanity check)", async () => { +test("Cannot make or take offer with insufficient funds (CI, sanity check)", async () => { let user3: HavenoClient|undefined; let err: any; try { @@ -2011,7 +2011,7 @@ test("Cannot make or take offer with insufficient unlocked funds (CI, sanity che await makeOffer({maker: {havenod: user3}, makerPaymentAccountId: paymentAccount.getId(), awaitFundsToMakeOffer: false}); throw new Error("Should have failed making offer with insufficient funds") } catch (err: any) { - if (!err.message.includes("not enough money")) throw err; + if (!err.message.includes("not enough funds")) throw err; const errTyped = err as HavenoError; assert.equal(errTyped.code, 2); }