Mock AM.getCurrentUserId for hsum devices

 Fixes testCallNotificationListener_NotifiedOnPostCallStyle when running on HSUM devices.

Test: atest com.android.server.notification.NotificationManagerServiceTest#testCallNotificationListener_NotifiedOnPostCallStyle
Bug: 305095040
Bug: 315780402
Change-Id: I3025258f70513ff49386f63420a36923108be213
diff --git a/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java b/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
index 6aacfd7..d973c71 100755
--- a/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
+++ b/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
@@ -594,6 +594,7 @@
                 .thenReturn(INVALID_TASK_ID);
         mContext.addMockSystemService(AppOpsManager.class, mock(AppOpsManager.class));
         when(mUm.getProfileIds(eq(mUserId), eq(false))).thenReturn(new int[] { mUserId });
+        when(mAmi.getCurrentUserId()).thenReturn(mUserId);
 
         when(mPackageManagerClient.hasSystemFeature(FEATURE_TELECOM)).thenReturn(true);