diff --git a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/IPGlobalPropertiesTest.cs b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/IPGlobalPropertiesTest.cs index ea8fe35b96efe..011bb87b92b92 100644 --- a/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/IPGlobalPropertiesTest.cs +++ b/src/libraries/System.Net.NetworkInformation/tests/FunctionalTests/IPGlobalPropertiesTest.cs @@ -212,7 +212,10 @@ public async Task GetUnicastAddresses_NotEmpty() public void IPGlobalProperties_DomainName_ReturnsEmptyStringWhenNotSet() { IPGlobalProperties gp = IPGlobalProperties.GetIPGlobalProperties(); - Assert.Equal(string.Empty, gp.DomainName); + + // [ActiveIssue("https://github.com/dotnet/runtime/issues/109280")] + string expectedDomainName = PlatformDetection.IsAndroid ? "localdomain" : string.Empty; + Assert.Equal(expectedDomainName, gp.DomainName); } } }