1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-18 03:29:12 -04:00

fix broken test

This commit is contained in:
Darien Raymond
2019-01-07 11:37:06 +01:00
parent d26700a2fe
commit 5f53530cc1
2 changed files with 22 additions and 15 deletions

View File

@@ -32,7 +32,7 @@ func TestParseString(t *testing.T) {
uuid, err := ParseString(str)
common.Must(err)
if r := cmp.Diff(expectedBytes, uuid.Bytes); r != "" {
if r := cmp.Diff(expectedBytes, uuid.Bytes()); r != "" {
t.Fatal(r)
}