diff --git a/p2p/client_identity_test.go b/p2p/client_identity_test.go
index 61c34fbf1167169745d1be552b9c7cbb41d3ace7..7b62f05ef02edb790377d9701f341bc91239ec61 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"))
 	}