Merge "In TestInfoDecorator, only reraise a caught Exception as TestError if it isn't already a TestSignal."
diff --git a/acts/framework/acts/test_utils/instrumentation/app_installer.py b/acts/framework/acts/test_utils/instrumentation/app_installer.py
index 5c74f8c..908e974 100644
--- a/acts/framework/acts/test_utils/instrumentation/app_installer.py
+++ b/acts/framework/acts/test_utils/instrumentation/app_installer.py
@@ -90,7 +90,6 @@
                 Note that '-r' is included by default.
         """
         self._ad.log.info('Installing app %s' % self.apk_path)
-        self._ad.ensure_screen_on()
         args = '-r %s' % ' '.join(extra_args)
         self._ad.adb.install('%s %s' % (args, self.apk_path))