fixed tests

This commit is contained in:
obscuren
2015-03-19 14:31:14 +01:00
parent d7ab716eea
commit cf45b939a0
4 changed files with 16 additions and 20 deletions

View File

@ -65,7 +65,7 @@ func (c *Context) GetRangeValue(x, size uint64) []byte {
}
func (c *Context) GetCode(x, size uint64) []byte {
return getCode(c.Code, x, size)
return getData(c.Code, x, size)
}
func (c *Context) Return(ret []byte) []byte {