Skip to content

Commit dcb75bc

Browse files
committed
Merge branch 'handshake_hints' of github.com:rockspore/grpc into handshake_hints
2 parents 52d744a + 2c1479c commit dcb75bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/core/tsi/cert_selection_offload_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ class HandshakeHintsCertificateSelector : public SyncTestCertificateSelector {
210210
cert_chain.push_back(cert.get());
211211
}
212212
bssl::UniquePtr<EVP_PKEY> private_key;
213-
GRPC_RETURN_IF_ERROR(grpc_core::MatchMutable(
213+
GRPC_RETURN_IF_ERROR(MatchMutable(
214214
&result->private_key,
215215
[&private_key](bssl::UniquePtr<EVP_PKEY>* key) {
216216
private_key = std::move(*key);
217217
return absl::OkStatus();
218218
},
219-
[](std::shared_ptr<grpc_core::PrivateKeySigner>*) {
219+
[](std::shared_ptr<PrivateKeySigner>*) {
220220
return absl::InternalError("PrivateKeySigner not expected");
221221
}));
222222
// This signer ensures test will fail if handshake hints don't work

0 commit comments

Comments
 (0)