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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authortherzok <marius.ungureanu@xamarin.com>2019-05-31 04:45:25 +0300
committertherzok <marius.ungureanu@xamarin.com>2019-05-31 04:45:25 +0300
commitcfd28580ad30d380efb47e0fd683e5a37efce97c (patch)
tree157ec928e882192865fcd0d4425cb1f75c7f1b8d /main
parent824dc8e14532d0c9a4a63494855c4fb2db97c8c0 (diff)
Fix log level of unit test
Diffstat (limited to 'main')
-rw-r--r--main/tests/MacPlatform.Tests/MacPlatformTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/MacPlatform.Tests/MacPlatformTest.cs b/main/tests/MacPlatform.Tests/MacPlatformTest.cs
index b164e87878..4e2f013ba7 100644
--- a/main/tests/MacPlatform.Tests/MacPlatformTest.cs
+++ b/main/tests/MacPlatform.Tests/MacPlatformTest.cs
@@ -192,7 +192,7 @@ namespace MacPlatform.Tests
Assert.Throws<ObjCException> (() => void_objc_msgSend (ex.Handle, selector));
- var (_, message) = logger.LogMessages.Single (x => x.Level == LogLevel.Error);
+ var (_, message) = logger.LogMessages.Single (x => x.Level == LogLevel.Fatal);
AssertMacPlatformStacktrace (message);
} finally {
LoggingService.RemoveLogger (logger.Name);