From e3f30ba0a956fea2438b8e17af2df9baf54eb4c3 Mon Sep 17 00:00:00 2001
From: joshemb <josh@elixxir.io>
Date: Tue, 13 Sep 2022 12:58:57 -0700
Subject: [PATCH] Remove bad test

---
 bindings/identity_test.go | 21 +--------------------
 1 file changed, 1 insertion(+), 20 deletions(-)

diff --git a/bindings/identity_test.go b/bindings/identity_test.go
index 7f0eccd65..eeff0b1a8 100644
--- a/bindings/identity_test.go
+++ b/bindings/identity_test.go
@@ -9,10 +9,6 @@ package bindings
 
 import (
 	"encoding/json"
-	"gitlab.com/elixxir/crypto/group"
-	"testing"
-	"time"
-
 	"gitlab.com/elixxir/crypto/cmix"
 	"gitlab.com/elixxir/crypto/cyclic"
 	dh "gitlab.com/elixxir/crypto/diffieHellman"
@@ -20,24 +16,9 @@ import (
 	"gitlab.com/xx_network/crypto/large"
 	"gitlab.com/xx_network/crypto/signature/rsa"
 	"gitlab.com/xx_network/primitives/id"
+	"testing"
 )
 
-func TestName(t *testing.T) {
-
-	gmid := group.MessageID{}
-	copy(gmid[:], []byte("forty five"))
-	mr := GroupChatMessage{
-		GroupId:   id.NewIdFromUInt(628139, id.Group, t).Bytes(),
-		MessageId: gmid.Bytes(),
-		Payload:   []byte("forty five"),
-		SenderId:  id.NewIdFromUInt(1992, id.User, t).Bytes(),
-		Timestamp: time.Now().UnixNano(),
-	}
-
-	mar, _ := json.Marshal(mr)
-	t.Logf("%s", mar)
-}
-
 func TestIdentity_JSON(t *testing.T) {
 	rng := csprng.NewSystemRNG()
 	uid := id.NewIdFromString("zezima", id.User, t)
-- 
GitLab