From 96b1c9c070056027b13f39a7faa9e0e04a36bfbb Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 14 May 2018 17:03:39 -0400 Subject: [PATCH] fix test --- test/provider.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/provider.js b/test/provider.js index 47a37924..5c2380a2 100644 --- a/test/provider.js +++ b/test/provider.js @@ -32,7 +32,7 @@ describe('embark.provider', function () { privateKey: 'myKey' }); - assert.deepEqual(account, {key: 'myKey'}); + assert.deepEqual(account, {key: '0xmyKey'}); }); it('should return two accounts from the keys in the file', function () { @@ -41,8 +41,8 @@ describe('embark.provider', function () { }); assert.deepEqual(account, [ - {key: 'key1'}, - {key: 'key2'} + {key: '0xkey1'}, + {key: '0xkey2'} ]); });