Browse Source

fix broken test

Darien Raymond 6 years ago
parent
commit
5c37439dbb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/protocol/id_test.go

+ 1 - 1
common/protocol/id_test.go

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