Skip to content

Commit

Permalink
Fix typo in adb.py SetProp()
Browse files Browse the repository at this point in the history
Summary:
Fix typo in adb.py SetProp()

Adb is dereferenced twice. (copy / paste error)

Reviewed By: MarkAndersonIX

Differential Revision: D36060849

fbshipit-source-id: 56f6cac3378f79016c69778c281053b7953e8f59
  • Loading branch information
Karl Simonsen authored and facebook-github-bot committed May 2, 2022
1 parent 0099669 commit a8434dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarking/platforms/android/adb.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def getprop(self, property: str, **kwargs) -> str:
return retval

def setprop(self, property, value, **kwargs):
self.adb.shell(["setprop", property, value], **kwargs)
self.shell(["setprop", property, value], **kwargs)

def isRootedDevice(self, silent=True) -> bool:
try:
Expand Down

0 comments on commit a8434dc

Please sign in to comment.