 Chromium Code Reviews
 Chromium Code Reviews Issue 2439403003:
  Refactor BlimpConnection to TCPConnection  (Closed)
    
  
    Issue 2439403003:
  Refactor BlimpConnection to TCPConnection  (Closed) 
  | Index: blimp/net/tcp_transport_unittest.cc | 
| diff --git a/blimp/net/tcp_transport_unittest.cc b/blimp/net/tcp_transport_unittest.cc | 
| index 97ead2f9cfbb49ce049e87765a5d8cc529f8e34e..0a80efefd0ac88074d05a63c36304a917b7ed4e9 100644 | 
| --- a/blimp/net/tcp_transport_unittest.cc | 
| +++ b/blimp/net/tcp_transport_unittest.cc | 
| @@ -44,7 +44,7 @@ class TCPTransportTest : public testing::Test { | 
| net::IPEndPoint GetLocalEndpoint() const { | 
| net::IPEndPoint local_address; | 
| - CHECK_EQ(net::OK, engine_.GetLocalAddress(&local_address)); | 
| + engine_.GetLocalAddress(&local_address); | 
| 
Wez
2016/11/09 22:47:17
Why remove the CHECK?
 | 
| return local_address; | 
| } |