Remove record equality test

This commit is contained in:
Katherine Yen 2023-08-17 13:55:27 -07:00 committed by GitHub
parent 7f37c8ee5e
commit ff9fe2c1be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

View File

@ -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);
}
}