pull/36877/head
Mark D. Roth 8 months ago
parent 68d3c63342
commit 8bf3282ca8
  1. 4
      test/core/client_channel/client_channel_test.cc

@ -325,13 +325,13 @@ class TestConfigSelector : public ConfigSelector {
builder.Add<TestFilter>(); builder.Add<TestFilter>();
} }
absl::Status GetCallConfig(GetCallConfigArgs args) override { absl::Status GetCallConfig(GetCallConfigArgs /*args*/) override {
return absl::OkStatus(); return absl::OkStatus();
} }
// Any instance of this class will behave the same, so all comparisons // Any instance of this class will behave the same, so all comparisons
// are true. // are true.
bool Equals(const ConfigSelector* other) const override { return true; } bool Equals(const ConfigSelector* /*other*/) const override { return true; }
}; };
CLIENT_CHANNEL_TEST(ConfigSelectorWithDynamicFilters) { CLIENT_CHANNEL_TEST(ConfigSelectorWithDynamicFilters) {

Loading…
Cancel
Save