| Index: net/nqe/network_quality_estimator_unittest.cc
|
| diff --git a/net/nqe/network_quality_estimator_unittest.cc b/net/nqe/network_quality_estimator_unittest.cc
|
| index 855fbb3327bacdf5e3c9b7ba2f6a147a616bc81c..6cfb76678537c7b303126b3b2bbf067278eb0bd5 100644
|
| --- a/net/nqe/network_quality_estimator_unittest.cc
|
| +++ b/net/nqe/network_quality_estimator_unittest.cc
|
| @@ -749,7 +749,14 @@ TEST(NetworkQualityEstimatorTest, DefaultHttpRTTBasedThresholds) {
|
|
|
| // Tests that |GetEffectiveConnectionType| returns correct connection type when
|
| // only transport RTT thresholds are specified in the variation params.
|
| -TEST(NetworkQualityEstimatorTest, ObtainThresholdsOnlyTransportRTT) {
|
| +#if defined(OS_IOS)
|
| +// Flaky on iOS: crbug.com/672917.
|
| +#define MAYBE_ObtainThresholdsOnlyTransportRTT \
|
| + DISABLED_ObtainThresholdsOnlyTransportRTT
|
| +#else
|
| +#define MAYBE_ObtainThresholdsOnlyTransportRTT ObtainThresholdsOnlyTransportRTT
|
| +#endif
|
| +TEST(NetworkQualityEstimatorTest, MAYBE_ObtainThresholdsOnlyTransportRTT) {
|
| std::map<std::string, std::string> variation_params;
|
| variation_params["effective_connection_type_algorithm"] =
|
| "TransportRTTOrDownstreamThroughput";
|
|
|