aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--p2p/client_identity_test.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/p2p/client_identity_test.go b/p2p/client_identity_test.go
index 61c34fbf1..7b62f05ef 100644
--- a/p2p/client_identity_test.go
+++ b/p2p/client_identity_test.go
@@ -8,12 +8,8 @@ import (
)
func TestClientIdentity(t *testing.T) {
- clientIdentity := NewSimpleClientIdentity("Ethereum(G)", "0.5.16", "test", []byte("privkey"), []byte("pubkey"))
- key := clientIdentity.Privkey()
- if !bytes.Equal(key, []byte("privkey")) {
- t.Errorf("Expected Privkey to be %x, got %x", key, []byte("privkey"))
- }
- key = clientIdentity.Pubkey()
+ clientIdentity := NewSimpleClientIdentity("Ethereum(G)", "0.5.16", "test", []byte("pubkey"))
+ key := clientIdentity.Pubkey()
if !bytes.Equal(key, []byte("pubkey")) {
t.Errorf("Expected Pubkey to be %x, got %x", key, []byte("pubkey"))
}