Merge pull request #8 from josephyzhou/develop

parse returns byte array instead of string now
This commit is contained in:
Jeffrey Wilcke 2014-02-24 12:53:30 +01:00
commit f2234264ed
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,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)
}
}