Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a937344 authored by Hsin-chen Chuang's avatar Hsin-chen Chuang
Browse files

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
parent 5041e01e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ impl IBluetoothQA for IBluetoothQADBus {
    fn get_modalias(&self) -> String {
        dbus_generated!()
    }
    #[dbus_method("FetchHIDReport")]
    #[dbus_method("GetHIDReport")]
    fn get_hid_report(&self, addr: String, report_type: BthhReportType, report_id: u8) {
        dbus_generated!()
    }