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 433c971 commit 3004fb6Copy full SHA for 3004fb6
tests/Magick.NET.Tests/ResourceLimitsTests/TheMaxProfileSizePropertry.cs
@@ -14,7 +14,8 @@ public class TheMaxProfileSizePropertry
14
[Fact]
15
public void ShouldHaveTheCorrectValue()
16
{
17
- Assert.Equal((ulong)long.MaxValue, ResourceLimits.MaxProfileSize);
+ var maxProfileSize = Runtime.Is64Bit ? (ulong)long.MaxValue : int.MaxValue;
18
+ Assert.Equal(maxProfileSize, ResourceLimits.MaxProfileSize);
19
}
20
21
0 commit comments