package rpc import ( "bytes" "testing" ) //fromHex func TestFromHex(t *testing.T) { input := "0x01" expected := []byte{1} result := fromHex(input) if bytes.Compare(expected, result) != 0 { t.Errorf("Expected % x got % x", expected, result) } } func TestFromHexOddLength(t *testing.T) { input := "0x1" expected := []byte{1} result := fromHex(input) if bytes.Compare(expected, result) != 0 { t.Errorf("Expected % x got % x", expected, result) } } ' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/databases/mysql80-client/files/patch-share_CMakeLists.txt
Commit message (Expand)AuthorAgeFilesLines
* databases/mysql80-{client, server}: Update to latest release 8.0.18Jochen Neumeister2020-01-091-27/+0