diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-01-03 15:34:57 +0100 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-01-03 15:34:57 +0100 |
| commit | 9b51ec4f397b1d6bacc9442b79edd0962b729a99 (patch) | |
| tree | ba185e26760dc59f7be5489507790b04c57b50a3 | |
| parent | a68e533ca502859b54ee7470de1a34ca94c5abf2 (diff) | |
fix test
| -rw-r--r-- | tests/integration.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration.test.ts b/tests/integration.test.ts index 100bd43..2570874 100644 --- a/tests/integration.test.ts +++ b/tests/integration.test.ts @@ -443,7 +443,7 @@ Deno.test("0004-coin-control.patch", { assertEquals(await transaction.status(), 1); assertEquals( - await transaction.errorString(), + (await transaction.errorString())?.split("\n")[0], "not enough money to transfer, overall balance only 0.002000000000, sent amount 0.002000000000", ); }); |
