quorum/common/types_test.go

16 lines
219 B
Go
Raw Normal View History

2015-03-17 05:24:12 -07:00
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)
}
}