Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Diagnostics.Process/tests/ProcessModuleTests.cs')
-rw-r--r--src/System.Diagnostics.Process/tests/ProcessModuleTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Diagnostics.Process/tests/ProcessModuleTests.cs b/src/System.Diagnostics.Process/tests/ProcessModuleTests.cs
index d91120e824..ad8fd7dc56 100644
--- a/src/System.Diagnostics.Process/tests/ProcessModuleTests.cs
+++ b/src/System.Diagnostics.Process/tests/ProcessModuleTests.cs
@@ -22,8 +22,8 @@ namespace System.Diagnostics.Tests
Assert.NotNull(module.FileName);
Assert.NotEmpty(module.FileName);
- Assert.InRange(module.BaseAddress.ToInt64(), 0, long.MaxValue);
- Assert.InRange(module.EntryPointAddress.ToInt64(), 0, long.MaxValue);
+ Assert.InRange(module.BaseAddress.ToInt64(), long.MinValue, long.MaxValue);
+ Assert.InRange(module.EntryPointAddress.ToInt64(), long.MinValue, long.MaxValue);
Assert.InRange(module.ModuleMemorySize, 0, long.MaxValue);
}
}