@@ -57,7 +57,7 @@ TEST(TesteeTest, BinaryToBinary) {
5757 RequestEquals (R"pb(
5858 protobuf_payload: "wire"
5959 requested_output_format: PROTOBUF
60- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
60+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
6161 test_category: BINARY_TEST
6262 )pb" )))
6363 .WillOnce (RespondWith (R"pb( runtime_error: "error")pb" ));
@@ -83,7 +83,7 @@ TEST(TesteeTest, TextToText) {
8383 RequestEquals (R"pb(
8484 text_payload: "text"
8585 requested_output_format: TEXT_FORMAT
86- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
86+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
8787 test_category: TEXT_FORMAT_TEST
8888 )pb" )))
8989 .WillOnce (RespondWith (R"pb( runtime_error: "error")pb" ));
@@ -109,7 +109,7 @@ TEST(TesteeTest, TextPrintUnknownFields) {
109109 RequestEquals (R"pb(
110110 protobuf_payload: "wire"
111111 requested_output_format: TEXT_FORMAT
112- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
112+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
113113 test_category: BINARY_TEST
114114 print_unknown_fields: true
115115 )pb" )))
@@ -136,7 +136,7 @@ TEST(TesteeTest, JsonToJson) {
136136 RunTest (" Required.Proto2.JsonInput.foo.JsonOutput" , RequestEquals (R"pb(
137137 json_payload: "json"
138138 requested_output_format: JSON
139- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
139+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
140140 test_category: JSON_TEST
141141 )pb" )))
142142 .WillOnce (RespondWith (R"pb( runtime_error: "error")pb" ));
@@ -161,7 +161,7 @@ TEST(TesteeTest, JsonIgnoreUnknownParsing) {
161161 RequestEquals (R"pb(
162162 json_payload: "json"
163163 requested_output_format: PROTOBUF
164- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
164+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
165165 test_category: JSON_IGNORE_UNKNOWN_PARSING_TEST
166166 )pb" )))
167167 .WillOnce (RespondWith (R"pb( runtime_error: "error")pb" ));
@@ -187,7 +187,7 @@ TEST(TesteeTest, InvalidResponse) {
187187 RequestEquals (R"pb(
188188 protobuf_payload: "wire"
189189 requested_output_format: PROTOBUF
190- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
190+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
191191 test_category: BINARY_TEST
192192 )pb" )))
193193 .WillOnce (Return (std::string (" \004 " )));
@@ -216,7 +216,7 @@ TEST(TesteeTest, DuplicateTestName) {
216216 RequestEquals (R"pb(
217217 protobuf_payload: "wire"
218218 requested_output_format: PROTOBUF
219- message_type: "protobuf_test_messages.google.protobuf .TestAllTypesProto2"
219+ message_type: "protobuf_test_messages.proto2 .TestAllTypesProto2"
220220 test_category: BINARY_TEST
221221 )pb" )))
222222 .WillRepeatedly (Return (std::string (" \004 " )));
0 commit comments