From 85d70247406f3d062414bfa97de357fe5517f9a4 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Tue, 15 May 2018 11:40:35 -0400 Subject: [PATCH] stupid tests --- test/provider.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/provider.js b/test/provider.js index 5c2380a2..2ceb8e9b 100644 --- a/test/provider.js +++ b/test/provider.js @@ -53,7 +53,7 @@ describe('embark.provider', function () { assert.deepEqual(account, - [{key: Buffer.from('f942d5d524ec07158df4354402bfba8d928c99d0ab34d0799a6158d56156d986', 'hex')}]); + [{key: "0xf942d5d524ec07158df4354402bfba8d928c99d0ab34d0799a6158d56156d986"}]); }); it('should return two accounts from the mnemonic using numAddresses', function () { @@ -64,8 +64,8 @@ describe('embark.provider', function () { assert.deepEqual(account, [ - {key: Buffer.from('f942d5d524ec07158df4354402bfba8d928c99d0ab34d0799a6158d56156d986', 'hex')}, - {key: Buffer.from('88f37cfbaed8c0c515c62a17a3a1ce2f397d08bbf20dcc788b69f11b5a5c9791', 'hex')} + {key: "0xf942d5d524ec07158df4354402bfba8d928c99d0ab34d0799a6158d56156d986"}, + {key: "0x88f37cfbaed8c0c515c62a17a3a1ce2f397d08bbf20dcc788b69f11b5a5c9791"} ]); });