1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-24 08:25:23 +00:00

fix broken test

This commit is contained in:
Darien Raymond 2019-01-08 23:41:34 +01:00
parent 163776b182
commit 5c37439dbb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -15,7 +15,7 @@ func TestIdEquals(t *testing.T) {
t.Error("expected id1 to equal id2, but actually not")
}
if !id1.String() != id2.String() {
if id1.String() != id2.String() {
t.Error(id1.String(), " != ", id2.String())
}
}