Skip to content

Commit d46c259

Browse files
Federica GerminarioChromium LUCI CQ
authored andcommitted
[ios] Disable tests in PasswordControllerEGTest on iOS 26.1
These tests are consistently failing on iOS26.1. bug: 453627553 Change-Id: I0cdcfd616c1cbfe19bba8928cc576b2fe0f11527 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7062136 Reviewed-by: Tommy Martino <[email protected]> Commit-Queue: Tommy Martino <[email protected]> Auto-Submit: Federica Germinario <[email protected]> Cr-Commit-Position: refs/heads/main@{#1532380}
1 parent e4d8e10 commit d46c259

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ios/chrome/browser/passwords/model/password_controller_egtest.mm

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,11 @@ - (void)MAYBE_testPasswordGenerationWhileSignedInWithError {
701701

702702
// Tests that the typed credentials are correctly saved in the sign-in UFF flow.
703703
- (void)testSaveTypedCredentialInUff {
704+
// TODO(crbug.com/453627553): Re-enable the test.
705+
if (@available(iOS 26.1, *)) {
706+
EARL_GREY_TEST_DISABLED(@"Test disabled on iOS 26.1.");
707+
}
708+
704709
NSString* usernameValue = @"test-username";
705710
NSString* passwordValue = @"test-password";
706711

@@ -782,6 +787,11 @@ - (void)testSaveCredentialWithAutofilledEmailInUFF {
782787
// Tests that the typed credentials are correctly updated in the sign-in UFF
783788
// flow when there is already a credential stored for the corresponding email.
784789
- (void)testUpdateTypedCredentialInUff {
790+
// TODO(crbug.com/453627553): Re-enable the test.
791+
if (@available(iOS 26.1, *)) {
792+
EARL_GREY_TEST_DISABLED(@"Test disabled on iOS 26.1.");
793+
}
794+
785795
NSString* usernameValue = @"test-username";
786796
NSString* passwordValue = @"test-password";
787797
NSString* passwordValueToBeReplaced = @"old-password";

0 commit comments

Comments
 (0)