Ensure verification methods that return AssertionResult use the return value

PiperOrigin-RevId: 318640506
Change-Id: I9c7ee05f94fc85a9cd49cb1ab830f3e6ee184185
diff --git a/http2/decoder/http2_structure_decoder_test.cc b/http2/decoder/http2_structure_decoder_test.cc
index ccb02be..1d36f3b 100644
--- a/http2/decoder/http2_structure_decoder_test.cc
+++ b/http2/decoder/http2_structure_decoder_test.cc
@@ -230,7 +230,7 @@
 }
 
 TEST_F(Http2FrameHeaderDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -266,7 +266,7 @@
 }
 
 TEST_F(Http2PriorityFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -298,7 +298,7 @@
 }
 
 TEST_F(Http2RstStreamFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -333,7 +333,7 @@
 }
 
 TEST_F(Http2SettingFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -366,7 +366,7 @@
 }
 
 TEST_F(Http2PushPromiseFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -401,7 +401,7 @@
 }
 
 TEST_F(Http2PingFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -449,7 +449,7 @@
 }
 
 TEST_F(Http2GoAwayFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -493,7 +493,7 @@
 }
 
 TEST_F(Http2WindowUpdateFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 //------------------------------------------------------------------------------
@@ -532,7 +532,7 @@
 }
 
 TEST_F(Http2AltSvcFieldsDecoderTest, DecodesRandomized) {
-  TestDecodingRandomizedStructures();
+  EXPECT_TRUE(TestDecodingRandomizedStructures());
 }
 
 }  // namespace