@@ -248,31 +248,28 @@ TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactNonMatches) {
248248)""" ;
249249 auto json = nlohmann::json::parse (kFieldJson , nullptr , false );
250250 ASSERT_TRUE (json.is_object ());
251- EXPECT_THAT (
252- DiscoveryTypeVertex::FormatFieldOptions (" monkey" , " monkey" , json),
253- Eq (" [json_name=\" monkey\" ]" ));
251+ EXPECT_THAT (DiscoveryTypeVertex::FormatFieldOptions (" monkey" , " monkey" , json),
252+ Eq (" [json_name=\" monkey\" ]" ));
254253 EXPECT_THAT (
255254 DiscoveryTypeVertex::FormatFieldOptions (" keyboard" , " keyboard" , json),
256255 Eq (" [json_name=\" keyboard\" ]" ));
257- EXPECT_THAT (
258- DiscoveryTypeVertex::FormatFieldOptions (" hockey" , " hockey" , json),
259- Eq (" [json_name=\" hockey\" ]" ));
260- EXPECT_THAT (
261- DiscoveryTypeVertex::FormatFieldOptions (" keypad" , " keypad" , json),
262- Eq (" [json_name=\" keypad\" ]" ));
256+ EXPECT_THAT (DiscoveryTypeVertex::FormatFieldOptions (" hockey" , " hockey" , json),
257+ Eq (" [json_name=\" hockey\" ]" ));
258+ EXPECT_THAT (DiscoveryTypeVertex::FormatFieldOptions (" keypad" , " keypad" , json),
259+ Eq (" [json_name=\" keypad\" ]" ));
263260}
264261
265- TEST (DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactNonStringNotRedacted) {
262+ TEST (DiscoveryTypeVertexTest,
263+ FormatFieldOptionsDebugRedactNonStringNotRedacted) {
266264 auto constexpr kFieldJson = R"""(
267265{
268266 "type": "integer"
269267}
270268)""" ;
271269 auto json = nlohmann::json::parse (kFieldJson , nullptr , false );
272270 ASSERT_TRUE (json.is_object ());
273- EXPECT_THAT (
274- DiscoveryTypeVertex::FormatFieldOptions (" key_id" , " keyId" , json),
275- Eq (" [json_name=\" keyId\" ]" ));
271+ EXPECT_THAT (DiscoveryTypeVertex::FormatFieldOptions (" key_id" , " keyId" , json),
272+ Eq (" [json_name=\" keyId\" ]" ));
276273}
277274
278275TEST (DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactRequired) {
@@ -1420,8 +1417,7 @@ message TestSchema {
14201417 " optional string to: optional double" )));
14211418}
14221419
1423- TEST_F (DiscoveryTypeVertexDescriptorTest,
1424- JsonToProtobufCustomerEncryptionKey) {
1420+ TEST_F (DiscoveryTypeVertexDescriptorTest, JsonToProtobufCustomerEncryptionKey) {
14251421 auto constexpr kSchemaJson = R"""(
14261422{
14271423 "id": "CustomerEncryptionKey",
0 commit comments