aboutsummaryrefslogtreecommitdiff
path: root/tests.js
diff options
context:
space:
mode:
authorIan Coleman <coleman.ian@gmail.com>2017-06-14 12:37:29 +1000
committerIan Coleman <coleman.ian@gmail.com>2017-06-14 12:37:29 +1000
commit0163fe6a3856f4b88a613ec1370d106051850ade (patch)
tree1951be6b102a07d1486b937a7d9472a3b6755159 /tests.js
parent920eb591a467dba98bef44adabb6cd6b257f43e2 (diff)
downloadBIP39-0163fe6a3856f4b88a613ec1370d106051850ade.tar.gz
BIP39-0163fe6a3856f4b88a613ec1370d106051850ade.tar.zst
BIP39-0163fe6a3856f4b88a613ec1370d106051850ade.zip
Fix ethereum test to include hex prefix
Diffstat (limited to 'tests.js')
-rw-r--r--tests.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.js b/tests.js
index 6d4702a..d1a6139 100644
--- a/tests.js
+++ b/tests.js
@@ -725,7 +725,7 @@ page.open(url, function(status) {
725 // this private key can be imported into 725 // this private key can be imported into
726 // https://www.myetherwallet.com/#view-wallet-info 726 // https://www.myetherwallet.com/#view-wallet-info
727 // and it should correlate to the address above 727 // and it should correlate to the address above
728 var expected = "8f253078b73d7498302bb78c171b23ce7a8fb511987d2b2702b731638a4a15e7"; 728 var expected = "0x8f253078b73d7498302bb78c171b23ce7a8fb511987d2b2702b731638a4a15e7";
729 var actual = page.evaluate(function() { 729 var actual = page.evaluate(function() {
730 return $(".privkey:first").text(); 730 return $(".privkey:first").text();
731 }); 731 });