diff --git a/service/src/test/java/org/whispersystems/textsecuregcm/grpc/ProfileGrpcServiceTest.java b/service/src/test/java/org/whispersystems/textsecuregcm/grpc/ProfileGrpcServiceTest.java index 3174ef794..9bc43cb8d 100644 --- a/service/src/test/java/org/whispersystems/textsecuregcm/grpc/ProfileGrpcServiceTest.java +++ b/service/src/test/java/org/whispersystems/textsecuregcm/grpc/ProfileGrpcServiceTest.java @@ -326,14 +326,4 @@ public class ProfileGrpcServiceTest { assertEquals(Status.PERMISSION_DENIED.getCode(), exception.getStatus().getCode()); } } - - @Test - void test() { - record Person(String firstName, String lastName) {}; - - Person rob = new Person("rob", "l"); - Person mike = new Person("rob", "l"); - - assertEquals(rob, mike); - } }