From ff9fe2c1be66f52674bee3b944e4f1e89d6c3acf Mon Sep 17 00:00:00 2001 From: Katherine Yen Date: Thu, 17 Aug 2023 13:55:27 -0700 Subject: [PATCH] Remove record equality test --- .../textsecuregcm/grpc/ProfileGrpcServiceTest.java | 10 ---------- 1 file changed, 10 deletions(-) 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); - } }