@@ -31,19 +31,19 @@ func Test_DerivePathAndDeriveSeed(t *testing.T) {
31
31
}, "max int * 2 should return 1 with root path" : {
32
32
counter : (math .MaxInt32 * 10000 ) + 172732732 ,
33
33
startingPath : "" ,
34
- exp : "2147488648 /2190664331/2147483648" ,
34
+ exp : "2147486148 /2190664331/2147483648" ,
35
35
}, "max int squared should return 0/0 path" : {
36
36
counter : (math .MaxInt32 * math .MaxInt32 ) + 172732732 ,
37
37
startingPath : "" ,
38
- exp : "3221225471/2190666831 /2147483649" ,
38
+ exp : "2684354559/3264408655 /2147483649" ,
39
39
}, "max int squared + 100 should return correct path" : {
40
40
counter : (math .MaxInt32 * math .MaxInt32 + (math .MaxInt32 * 100 )) + 172732732 ,
41
41
startingPath : "" ,
42
- exp : "3221225521/2190666806 /2147483649" ,
42
+ exp : "2684354584/3264408630 /2147483649" ,
43
43
}, "max int squared plus two int32 should return correct path" : {
44
44
counter : ((math .MaxInt32 * math .MaxInt32 * 1 ) + (math .MaxInt32 * 2 )) + 172732732 ,
45
45
startingPath : "" ,
46
- exp : "3221225472 /2190666830/2147483651" ,
46
+ exp : "2684354560 /2190666830/2147483651" ,
47
47
},
48
48
}
49
49
for name , test := range tests {
0 commit comments