diff options
author | 2024-05-24 19:59:34 +0800 | |
---|---|---|
committer | 2024-05-28 15:28:17 +0800 | |
commit | 9a937344ba8602b4fd2c8c8dc1377f7e55251a09 (patch) | |
tree | 3f24943cf48145637acce1bdb08aab4207ea9a48 /floss | |
parent | 5041e01e7c2b08ee0dba852f0c4ba5fab0601d51 (diff) |
floss: QA: Fix the wrong DBus method name GetHIDReport
Bug: 342337056
Tag: #floss
Test: mmm packages/modules/Bluetooth
Test: btclient> hid get-report 11:35:35:11:35:35 Input 1
Flag: EXEMPT, Floss-only changes
Change-Id: Iecac01506a2fea28b28be8e49c4922fdf1ab867a
Diffstat (limited to 'floss')
-rw-r--r-- | floss/pandora/floss/qa_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/floss/pandora/floss/qa_client.py b/floss/pandora/floss/qa_client.py index 29765e0506..4fb7c99eb4 100644 --- a/floss/pandora/floss/qa_client.py +++ b/floss/pandora/floss/qa_client.py @@ -416,7 +416,7 @@ class FlossQAClient(BluetoothQACallbacks): Returns: True on success, False otherwise. """ - self.proxy().FetchHIDReport(addr, report_type, report_id) + self.proxy().GetHIDReport(addr, report_type, report_id) return True @utils.glib_call(False) |