From c7eeef610d337a4b514b53e85e1f517cb7c0150c Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Wed, 7 Aug 2024 06:16:58 -0700 Subject: [PATCH] fix: add missing call to EqualsTester#testEquals Fixes https://github.com/googleapis/java-bigtable/issues/2292 --- .../test/java/com/google/cloud/bigtable/common/TypeTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java index aba13bfa12..770887a324 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java @@ -126,7 +126,8 @@ public void structWithSchema_equals() { StructWithSchema.fromProto(structProto.getStructType())) .addEqualityGroup( StructWithSchema.fromProto(complexStructProto.getStructType()), - StructWithSchema.fromProto(complexStructProto.getStructType())); + StructWithSchema.fromProto(complexStructProto.getStructType())) + .testEquals(); } @Test