@@ -357,14 +357,14 @@ REMOTE_CONFIG_TEST("response processing") {
357357 ]
358358 })" ;
359359
360- const auto response_json =
360+ const auto new_response_json =
361361 nlohmann::json::parse (/* input = */ new_rc_response,
362362 /* parser_callback = */ nullptr ,
363363 /* allow_exceptions = */ false );
364364
365- REQUIRE (!response_json .is_discarded ());
365+ REQUIRE (!new_response_json .is_discarded ());
366366
367- rc.process_response (response_json );
367+ rc.process_response (new_response_json );
368368
369369 CHECK (tracing_listener->count_on_update == 2 );
370370 CHECK (tracing_listener->count_on_revert == 0 );
@@ -398,14 +398,14 @@ REMOTE_CONFIG_TEST("response processing") {
398398 ]
399399 })" ;
400400
401- const auto response_json =
401+ const auto new_response_json =
402402 nlohmann::json::parse (/* input = */ rc_partial_revert_response,
403403 /* parser_callback = */ nullptr ,
404404 /* allow_exceptions = */ false );
405405
406- REQUIRE (!response_json .is_discarded ());
406+ REQUIRE (!new_response_json .is_discarded ());
407407
408- rc.process_response (response_json );
408+ rc.process_response (new_response_json );
409409
410410 CHECK (tracing_listener->count_on_update == 1 );
411411 CHECK (tracing_listener->count_on_revert == 1 );
@@ -422,14 +422,14 @@ REMOTE_CONFIG_TEST("response processing") {
422422 "target_files": [{}]
423423 })" ;
424424
425- const auto response_json =
425+ const auto new_response_json =
426426 nlohmann::json::parse (/* input = */ rc_revert_response,
427427 /* parser_callback = */ nullptr ,
428428 /* allow_exceptions = */ false );
429429
430- REQUIRE (!response_json .is_discarded ());
430+ REQUIRE (!new_response_json .is_discarded ());
431431
432- rc.process_response (response_json );
432+ rc.process_response (new_response_json );
433433
434434 CHECK (tracing_listener->count_on_update == 1 );
435435 CHECK (tracing_listener->count_on_revert == 1 );
0 commit comments