Skip to content

Commit 75331d7

Browse files
notif: add indirection to appBundleId in store test file
1 parent 49f72cd commit 75331d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/model/store_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ void main() {
10321032
if (defaultTargetPlatform == TargetPlatform.android) {
10331033
checkLastRequestFcm(token: '012abc');
10341034
} else {
1035-
checkLastRequestApns(token: '012abc', appid: 'com.zulip.flutter');
1035+
checkLastRequestApns(token: '012abc', appid:await testBinding.getAppBundleId());
10361036
}
10371037

10381038
if (defaultTargetPlatform == TargetPlatform.android) {
@@ -1071,7 +1071,7 @@ void main() {
10711071
if (defaultTargetPlatform == TargetPlatform.android) {
10721072
checkLastRequestFcm(token: '012abc');
10731073
} else {
1074-
checkLastRequestApns(token: '012abc', appid: 'com.zulip.flutter');
1074+
checkLastRequestApns(token: '012abc', appid:await testBinding.getAppBundleId());
10751075
}
10761076

10771077
if (defaultTargetPlatform == TargetPlatform.android) {

0 commit comments

Comments
 (0)