| Index: appengine/swarming/handlers_test.py
|
| diff --git a/appengine/swarming/handlers_test.py b/appengine/swarming/handlers_test.py
|
| index feeec96f37c27ff37700bcb8fff3eac13ac1f5e6..044112aefef8c5c036a477d1aa140e860d6ee2f5 100755
|
| --- a/appengine/swarming/handlers_test.py
|
| +++ b/appengine/swarming/handlers_test.py
|
| @@ -94,7 +94,7 @@ class FrontendTest(AppTestBase):
|
|
|
| def test_root(self):
|
| response = self.app.get('/', status=200)
|
| - self.assertGreater(len(response.body), 1000)
|
| + self.assertGreater(len(response.body), 600)
|
|
|
| def testAllSwarmingHandlersAreSecured(self):
|
| # Test that all handlers are accessible only to authenticated user or
|
| @@ -110,6 +110,7 @@ class FrontendTest(AppTestBase):
|
|
|
| public_urls = frozenset([
|
| '/',
|
| + '/oldui',
|
| '/_ah/warmup',
|
| '/api/config/v1/validate',
|
| '/auth',
|
|
|