This commit is contained in:
Jonathan Rainville 2018-05-14 17:03:39 -04:00
parent c5f80c72b9
commit 96b1c9c070
1 changed files with 3 additions and 3 deletions

View File

@ -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'}
]);
});