Skip to content

Commit 6aa5809

Browse files
authored
Fix breakage caused by PR #983 (#985)
1 parent 5dd504d commit 6aa5809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mobly/controllers/android_device_lib/snippet_client_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def _validate_snippet_app_on_device(self):
238238
)
239239

240240
# Validate that the app is instrumented.
241-
out = self._adb.shell(f'pm list instrumentation {self.package}')
241+
out = self._adb.shell('pm list instrumentation')
242242
matched_out = utils.grep(
243243
f'^instrumentation:{self.package}/{_INSTRUMENTATION_RUNNER_PACKAGE}',
244244
out,

0 commit comments

Comments
 (0)