Skip to content

Commit

Permalink
Merge pull request skycoin#21 from Senyoret1/Update-test-files
Browse files Browse the repository at this point in the history
Update .golden files
  • Loading branch information
gz-c authored Jul 2, 2018
2 parents cd01262 + 346c9c2 commit 2cdb302
Show file tree
Hide file tree
Showing 14 changed files with 4,451 additions and 4,451 deletions.
16 changes: 8 additions & 8 deletions tests/test-fixtures/input-hashes.golden
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"hashes": [
"66687aadf862bd776c8fc18b8e9f8e20089714856ee233b3902a591d0d5f2925",
"72cd6e8422c407fb6d098690f1130b7ded7ec2f7f5e1d30bd9d521f015363793",
"1a964cd59841a8a64cf5a6f52da4a963c10fa92983f8694c8ee9a04294dafc92",
"cb142a76adc0893535989da9123848d3c1e97e49de10d86dc3a11a9db9e9b826",
"cc156b421b317e1a8ebfae0018a7dce45b0bfd9604dee57b333e3402350d8caf",
"528b5643c9f042faec41b0c31d341cdbc8531ded12d1d2b2851dd498967913eb",
"ad647b800dc8e21560da7643ee0b8979b22743492bc4bd04ac33d1c6ef3d6ba0",
"2e56c7beb552c2eff3b1ba5955614a8b264475f73a942b523190ea22857497b7",
"d8b005640029bf705a026ddb62f6e79500660044aa8fcf583cdd77c3017add03",
"e9f77b0528611d961c0825a93a3ad3e5be71d3fb5c6376cd87714a0d04098996"
"ae1d9ccf7ce3717a9aa3316c6b7850d0a85bc0466bc1b572545f90ccf1b59130",
"a4cfaddadceb816c4dad0a10d933a1880f9b47b9f943ca93b91cc3a046567fda",
"1d93be8a70df9e7450a0ce98231c58d7353e025cd1e9db32a00c2fd0a1643d96",
"a0c10151fc212bc313332c58aba5e19de1d6787178613819ff8dc6db270c66fc",
"fc54b1c9039285084cec65510329331a82397afff54706a9ac611b95c933f783",
"621484cec82cca5d8fb163d80c361ddf7320913fb294a3855c3e4db60440919b",
"b780c445c161b65c3dc1046cfba900161fe8a5f644907995b077f1afd231b230",
"4eefdc2b82e79d98fd3f323b5c284a1c35f4a8a862d9e83c8b96cd647ca3794d"
]
}
6,002 changes: 3,001 additions & 3,001 deletions tests/test-fixtures/many-addresses.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0000.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0001.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0002.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0003.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0004.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0005.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0006.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0007.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0008.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0009.golden

Large diffs are not rendered by default.

262 changes: 131 additions & 131 deletions tests/test-fixtures/seed-0010.golden

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export function convertAsciiToHexa(str): string {
const arr1: string[] = [];
for (let n = 0, l = str.length; n < l; n ++) {
const hex = Number(str.charCodeAt(n)).toString(16);
arr1.push(hex !== '0' ? hex : '00');
arr1.push(hex.length != 1 ? hex : '0' + hex);
}
return arr1.join('');
}
Expand Down

0 comments on commit 2cdb302

Please sign in to comment.