Disable a test that times out on the bots

R=scheglov@google.com

Review-Url: https://codereview.chromium.org/2568183002 .
This commit is contained in:
Brian Wilkerson 2016-12-12 08:51:11 -08:00
parent 1e59cc0b9f
commit a2713a8be5

View file

@ -67,4 +67,12 @@ class SetSubscriptionsTest extends AbstractSetSubscriptionsTest {}
class SetSubscriptionsTest_Driver extends AbstractSetSubscriptionsTest {
@override
bool get enableNewAnalysisDriver => true;
@failingTest
@override
test_setSubscriptions() {
// This test times out on the bots and has been disabled to keep them green.
// We need to discover the cause and re-enable it.
fail('Timed out');
}
}