| Index: tools/chrome_proxy/webdriver/decorator_smoke.py
|
| diff --git a/tools/chrome_proxy/webdriver/decorator_smoke.py b/tools/chrome_proxy/webdriver/decorator_smoke.py
|
| index 0441798c350f70e2b0ac49de9a2471357c70b218..04979ff5890e68ac35f52b5454e48ca2a36c2af4 100644
|
| --- a/tools/chrome_proxy/webdriver/decorator_smoke.py
|
| +++ b/tools/chrome_proxy/webdriver/decorator_smoke.py
|
| @@ -3,7 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| from decorators import AndroidOnly
|
| -from decorators import ChromeVersionAfterM
|
| +from decorators import ChromeVersionEqualOrAfterM
|
| from decorators import ChromeVersionBeforeM
|
| from common import ParseFlags
|
| from common import IntegrationTest
|
| @@ -26,7 +26,7 @@ class DecoratorSmokeTest(IntegrationTest):
|
| self.fail('This function should not be called when the Chrome Milestone is '
|
| 'greater than 0')
|
|
|
| - @ChromeVersionAfterM(999999999)
|
| + @ChromeVersionEqualOrAfterM(999999999)
|
| def testVersionAfterDecorator(self):
|
| self.fail('This function should not be called when the Chrome Milestone is '
|
| 'less than 999999999')
|
|
|