diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-17 20:24:12 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-17 20:24:25 +0800 |
commit | 0fa7859b94ddb0a35a6fbdb2c29139b0baaa2bfa (patch) | |
tree | 9d4b05ed91f007c0831033c35f80dff691a4c7e7 /common | |
parent | ff55c6f5badda7ef11c38ef5d94b71420b14817c (diff) | |
download | go-tangerine-0fa7859b94ddb0a35a6fbdb2c29139b0baaa2bfa.tar.gz go-tangerine-0fa7859b94ddb0a35a6fbdb2c29139b0baaa2bfa.tar.zst go-tangerine-0fa7859b94ddb0a35a6fbdb2c29139b0baaa2bfa.zip |
Fixed VM & Tests w/ conversion
Diffstat (limited to 'common')
-rw-r--r-- | common/types_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/types_test.go b/common/types_test.go new file mode 100644 index 000000000..9f303152c --- /dev/null +++ b/common/types_test.go @@ -0,0 +1,15 @@ +package common + +import "testing" + +func TestBytesConversion(t *testing.T) { + bytes := []byte{5} + hash := BytesToHash(bytes) + + var exp Hash + exp[31] = 5 + + if hash != exp { + t.Errorf("expected %x got %x", exp, hash) + } +} |