From: Chris Duncan Date: Fri, 8 Aug 2025 15:09:22 +0000 (-0700) Subject: Fix duplicated test. X-Git-Tag: v0.10.5~43^2~25 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=699642276caa7e49493b1dbcc7bc5193f679dea1;p=libnemo.git Fix duplicated test. --- 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 () => {