Index: build/android/pylib/uiautomator/test_runner.py |
diff --git a/build/android/pylib/uiautomator/test_runner.py b/build/android/pylib/uiautomator/test_runner.py |
index c7239b436346fc34feb441426e0e662231d3b920..b47a23689978e320a860d9eff841915ec7d34e40 100644 |
--- a/build/android/pylib/uiautomator/test_runner.py |
+++ b/build/android/pylib/uiautomator/test_runner.py |
@@ -64,7 +64,7 @@ class TestRunner(instr_test_runner.TestRunner): |
self.device.ClearApplicationState(self._package) |
if self.flags: |
annotations = self.test_pkg.GetTestAnnotations(test) |
- if ('FirstRunExperience' == annotations(test).get('Feature', None)): |
+ if ('FirstRunExperience' == annotations.get('Feature', None)): |
self.flags.RemoveFlags(['--disable-fre']) |
else: |
self.flags.AddFlags(['--disable-fre']) |