good morning!!!!

Skip to content
Snippets Groups Projects
Commit f2234264 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Merge pull request #8 from josephyzhou/develop

parse returns byte array instead of string now
parents 95a8ebc2 8ecb24f1
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ func TestCompile(t *testing.T) { ...@@ -14,7 +14,7 @@ func TestCompile(t *testing.T) {
} }
calc := (48 + 0*256 + 0*int64(math.Pow(256, 2))) 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) t.Error("Expected", calc, ", got:", instr)
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment