Skip to content

Commit

Permalink
[flutter_tool] change print when selecting developer identity for cod…
Browse files Browse the repository at this point in the history
…e signing (#136978)

Fixes flutter/flutter#136984
  • Loading branch information
christopherfujino authored Oct 30, 2023
1 parent e12d1a7 commit 2c10217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/flutter_tools/lib/src/ios/code_signing.dart
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Future<String?> _getCodeSigningIdentityDevelopmentTeam({
return null;
}

logger.printStatus('Signing iOS app for device deployment using developer identity: "$signingIdentity"');
logger.printStatus('Developer identity "$signingIdentity" selected for iOS code signing');

final String? signingCertificateId =
_securityFindIdentityCertificateCnExtractionPattern
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ void main() {
);
expect(
logger.statusText,
contains('Signing iOS app for device deployment using developer identity: "iPhone Developer: Profile 3 (3333CCCC33)"'),
contains('Developer identity "iPhone Developer: Profile 3 (3333CCCC33)" selected for iOS code signing'),
);
expect(logger.errorText, isEmpty);
expect(stdin, 'This is a fake certificate');
Expand Down Expand Up @@ -405,7 +405,7 @@ void main() {

expect(
logger.statusText,
contains('Signing iOS app for device deployment using developer identity: "iPhone Developer: Profile 1 (1111AAAA11)"'),
contains('Developer identity "iPhone Developer: Profile 1 (1111AAAA11)" selected for iOS code signing'),
);
expect(logger.errorText, isEmpty);
expect(stdin, 'This is a fake certificate');
Expand Down Expand Up @@ -461,7 +461,7 @@ void main() {
);
expect(
logger.statusText,
contains('Signing iOS app for device deployment using developer identity: "iPhone Developer: Profile 3 (3333CCCC33)"'),
contains('Developer identity "iPhone Developer: Profile 3 (3333CCCC33)" selected for iOS code signing'),
);
expect(logger.errorText, isEmpty);
expect(stdin, 'This is a fake certificate');
Expand Down

0 comments on commit 2c10217

Please sign in to comment.