| Index: chrome/test/functional/policy.py
|
| diff --git a/chrome/test/functional/policy.py b/chrome/test/functional/policy.py
|
| index 399168d23e6e72a855b23b02895a7c598fa6ead2..eaf36ff197123d9d9d9e976b237a421297d42619 100755
|
| --- a/chrome/test/functional/policy.py
|
| +++ b/chrome/test/functional/policy.py
|
| @@ -157,24 +157,6 @@ class PolicyTest(policy_base.PolicyTestBase):
|
| else:
|
| raise NotImplementedError()
|
|
|
| - def testDisableSPDY(self):
|
| - """Verify that SPDY is disabled."""
|
| - policy = {'DisableSpdy': True}
|
| - self.SetUserPolicy(policy)
|
| - self.NavigateToURL('chrome://net-internals/#spdy')
|
| - self.assertEquals(0, self.FindInPage('SPDY Enabled: true')['match_count'])
|
| - self.assertEquals(
|
| - 1,
|
| - self.FindInPage('SPDY Enabled: false', tab_index=0)['match_count'],
|
| - msg='SPDY is not disabled.')
|
| - policy = {'DisableSpdy': False}
|
| - self.SetUserPolicy(policy)
|
| - self.ReloadTab()
|
| - self.assertEquals(
|
| - 1,
|
| - self.FindInPage('SPDY Enabled: true', tab_index=0)['match_count'],
|
| - msg='SPDY is not disabled.')
|
| -
|
| def testDisabledPlugins(self):
|
| """Verify that disabled plugins cannot be enabled."""
|
| policy = {'DisabledPlugins': ['Shockwave Flash']}
|
|
|