From 699642276caa7e49493b1dbcc7bc5193f679dea1 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 8 Aug 2025 08:09:22 -0700 Subject: [PATCH] Fix duplicated test. --- test/test.tools.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.tools.mjs b/test/test.tools.mjs index e417a8f..5d05c97 100644 --- a/test/test.tools.mjs +++ b/test/test.tools.mjs @@ -73,8 +73,8 @@ await Promise.all([ }) await test('should convert knano to pico', async () => { - const result = await Tools.convert('123.456', 'nano', 'pico') - assert.equal(result, '123456') + const result = await Tools.convert('123.456', 'knano', 'pico') + assert.equal(result, '123456000') }) await test('should throw if amount exceeds raw max', async () => { -- 2.47.3