We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d6db3 commit 4f567e5Copy full SHA for 4f567e5
src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs
@@ -236,7 +236,7 @@ public void Version_Valid()
236
[Fact]
237
public void WorkingSet_Valid()
238
{
239
- if (PlatformDetection.IsBrowser || PlatformDetection.IsiOS || PlatformDetection.IstvOS)
+ if (PlatformDetection.IsBrowser || (PlatformDetection.IsiOS && !PlatformDetection.IsMacCatalyst) || PlatformDetection.IstvOS)
240
Assert.Equal(0, Environment.WorkingSet);
241
else
242
Assert.True(Environment.WorkingSet > 0, "Expected positive WorkingSet value");
0 commit comments