diff --git a/src/libraries/Common/tests/System/Net/Security/Kerberos/FakeKerberosPrincipal.cs b/src/libraries/Common/tests/System/Net/Security/Kerberos/FakeKerberosPrincipal.cs index 0fe771efadda53..a56d4cadcb2fef 100644 --- a/src/libraries/Common/tests/System/Net/Security/Kerberos/FakeKerberosPrincipal.cs +++ b/src/libraries/Common/tests/System/Net/Security/Kerberos/FakeKerberosPrincipal.cs @@ -19,7 +19,7 @@ public FakeKerberosPrincipal(PrincipalType type, string principalName, string re this.Type = type; this.PrincipalName = principalName; this.Realm = realm; - this.Expires = DateTimeOffset.UtcNow.AddMonths(9999); + this.Expires = DateTimeOffset.UtcNow.AddMonths(1); this._password = password; } diff --git a/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs b/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs index b76b017d4bb34f..6cb36e463da1f6 100644 --- a/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs +++ b/src/libraries/Common/tests/System/Net/Security/Kerberos/KerberosExecutor.cs @@ -29,9 +29,7 @@ public class KerberosExecutor : IDisposable private readonly ITestOutputHelper _testOutputHelper; public static bool IsSupported { get; } = - RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) && - // ARM32 is cursed (https://github.com/dotnet/runtime/issues/73343) - !PlatformDetection.IsArmProcess; + RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()); public const string DefaultAdminPassword = "PLACEHOLDERadmin."; public const string DefaultUserPassword = "PLACEHOLDERcorrect20";