Skip to content

Commit

Permalink
clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
donnadionne committed Apr 14, 2020
1 parent 3135d97 commit 84b2b98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cpp/end2end/xds_end2end_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1699,9 +1699,9 @@ TEST_P(BasicTest, Vanilla) {
backends_[i]->backend_service()->request_count());
}
// Check LB policy name for the channel.
EXPECT_EQ(
(GetParam().use_xds_resolver() ? "xds_routing_experimental" : "eds_experimental"),
channel_->GetLoadBalancingPolicyName());
EXPECT_EQ((GetParam().use_xds_resolver() ? "xds_routing_experimental"
: "eds_experimental"),
channel_->GetLoadBalancingPolicyName());
}

TEST_P(BasicTest, IgnoresUnhealthyEndpoints) {
Expand Down

0 comments on commit 84b2b98

Please sign in to comment.