From 66d518d66676ba1d39c31fde9b8d7f1fd1e449b9 Mon Sep 17 00:00:00 2001 From: Evan Chen Date: Thu, 3 Oct 2024 23:05:17 +0000 Subject: [PATCH] Add deviceId in AssociaitonInfo Test: cts Bug: 330793944 Flag: EXEMPT trivial bugfix Change-Id: Ib6860f8950f022689ae0c9ef6b4b6794e727c8f9 --- .../BluetoothDetailsCompanionAppsControllerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/robotests/src/com/android/settings/bluetooth/BluetoothDetailsCompanionAppsControllerTest.java b/tests/robotests/src/com/android/settings/bluetooth/BluetoothDetailsCompanionAppsControllerTest.java index d9054a8bf77..cb891a23092 100644 --- a/tests/robotests/src/com/android/settings/bluetooth/BluetoothDetailsCompanionAppsControllerTest.java +++ b/tests/robotests/src/com/android/settings/bluetooth/BluetoothDetailsCompanionAppsControllerTest.java @@ -104,7 +104,6 @@ public class BluetoothDetailsCompanionAppsControllerTest extends associationId, /* userId */ 0, packageName, - /* tag */ null, MacAddress.fromString(mCachedDevice.getAddress()), /* displayName */ null, /* deviceProfile */ "", @@ -116,7 +115,8 @@ public class BluetoothDetailsCompanionAppsControllerTest extends /* timeApprovedMs */ System.currentTimeMillis(), /* lastTimeConnected */ Long.MAX_VALUE, /* systemDataSyncFlags */ -1, - /* deviceIcon */ null); + /* deviceIcon */ null, + /* deviceId */ null); mAssociations.add(association); showScreen(mController);