Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: tools/chrome_proxy/webdriver/decorator_smoke.py

Issue 2939943003: Fix testLitePageFallbackViaPagePolicies below M61 (Closed)
Patch Set: Rename decorator Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/chrome_proxy/webdriver/decorators.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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')
« no previous file with comments | « no previous file | tools/chrome_proxy/webdriver/decorators.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698