Skip to content

Commit

Permalink
Use suggestions from clang-tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Nolan Varani <landesherr@users.noreply.github.com>
  • Loading branch information
landesherr committed Jul 31, 2020
1 parent b17ca5f commit 89b1540
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ class GrpcAwsIamClientIntegrationTest : public GrpcSslClientIntegrationTest {
}

void expectExtraHeaders(FakeStream& fake_stream) override {
if (call_credentials_ != CallCredentials::FromPlugin)
if (call_credentials_ != CallCredentials::FromPlugin) {
return;
}
AssertionResult result = fake_stream.waitForHeadersComplete();
RELEASE_ASSERT(result, result.message());
Http::TestRequestHeaderMapImpl stream_headers(fake_stream.headers());
Expand Down

0 comments on commit 89b1540

Please sign in to comment.