diff --git a/webrtc/video/rampup_tests.cc b/webrtc/video/rampup_tests.cc index 3347cc8f1..1772444be 100644 --- a/webrtc/video/rampup_tests.cc +++ b/webrtc/video/rampup_tests.cc @@ -526,19 +526,10 @@ TEST_F(RampUpTest, WithPacingAndRtx) { RunRampUpTest(true, true); } TEST_F(RampUpTest, UpDownUpOneStream) { RunRampUpDownUpTest(1, false); } -// TODO(hlundin): Find out why these tests are failing on some bots and -// re-enable. -// See https://code.google.com/p/webrtc/issues/detail?id=3010. -TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreams) { - RunRampUpDownUpTest(3, false); -} +TEST_F(RampUpTest, UpDownUpThreeStreams) { RunRampUpDownUpTest(3, false); } -TEST_F(RampUpTest, DISABLED_UpDownUpOneStreamRtx) { - RunRampUpDownUpTest(1, true); -} +TEST_F(RampUpTest, UpDownUpOneStreamRtx) { RunRampUpDownUpTest(1, true); } -TEST_F(RampUpTest, DISABLED_UpDownUpThreeStreamsRtx) { - RunRampUpDownUpTest(3, true); -} +TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { RunRampUpDownUpTest(3, true); } } // namespace webrtc