| Index: webrtc/test/call_test.cc | 
| diff --git a/webrtc/test/call_test.cc b/webrtc/test/call_test.cc | 
| index a766f79f5629fafddf241561bc7bce8e7459516f..e1c8759081b017c201c6bc4bbd8e8deee0fbc1e1 100644 | 
| --- a/webrtc/test/call_test.cc | 
| +++ b/webrtc/test/call_test.cc | 
| @@ -8,7 +8,6 @@ | 
| *  be found in the AUTHORS file in the root of the source tree. | 
| */ | 
| #include "webrtc/base/checks.h" | 
| -#include "webrtc/common.h" | 
| #include "webrtc/config.h" | 
| #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" | 
| #include "webrtc/test/call_test.h" | 
| @@ -312,9 +311,7 @@ void CallTest::CreateVoiceEngines() { | 
| voe_send_.codec = VoECodec::GetInterface(voe_send_.voice_engine); | 
| EXPECT_EQ(0, voe_send_.base->Init(fake_send_audio_device_.get(), nullptr, | 
| decoder_factory_)); | 
| -  Config voe_config; | 
| -  voe_config.Set<VoicePacing>(new VoicePacing(true)); | 
| -  voe_send_.channel_id = voe_send_.base->CreateChannel(voe_config); | 
| +  voe_send_.channel_id = voe_send_.base->CreateChannel(); | 
| EXPECT_GE(voe_send_.channel_id, 0); | 
|  | 
| voe_recv_.voice_engine = VoiceEngine::Create(); | 
|  |