parse now returns byte[] instead of string

This commit is contained in:
Joey Zhou 2014-02-23 14:43:18 -08:00
parent 3a45cdeaf9
commit 8ecb24f114
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ func TestCompile(t *testing.T) {
}
calc := (48 + 0*256 + 0*int64(math.Pow(256, 2)))
if Big(instr).Int64() != calc {
if BigD(instr).Int64() != calc {
t.Error("Expected", calc, ", got:", instr)
}
}