Mtproto_TlsObfuscation test: minor fix

GitOrigin-RevId: b9980516c7bcdb08da3138634459c083fe7bdaa0
This commit is contained in:
Arseny Smirnov 2019-07-04 14:44:27 +02:00
parent 1e9cefb2eb
commit ff53658486

View File

@ -610,7 +610,7 @@ TEST(Mtproto, TlsObfusaction) {
class Callback : public TransparentProxy::Callback {
public:
void set_result(Result<SocketFd> result) override {
CHECK(result.is_error() && result.error().message() == "response hash mismatch");
CHECK(result.is_error() && result.error().message() == "Response hash mismatch");
Scheduler::instance()->finish();
}
void on_connected() override {