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
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-06-19 05:01:45 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-06-19 05:01:45 +0300
commitfead78a03c739833e4c6a0adf4c53a806aee7cc4 (patch)
treec7fa0018f2a17b91dad2223aead86afe4ae7fc40 /main/src/addins/NUnit
parent94a5b853b401f6bd2fd9640c78714af177e4afb5 (diff)
[NUnit] Fix typo in failure message.
Diffstat (limited to 'main/src/addins/NUnit')
-rw-r--r--main/src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs b/main/src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs
index e28f0179d0..ee2430c034 100644
--- a/main/src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs
+++ b/main/src/addins/NUnit/Services/NUnitAssemblyTestSuite.cs
@@ -434,7 +434,7 @@ namespace MonoDevelop.NUnit
} catch (Exception ex) {
if (ReportCrash (testContext, crashLogFile)) {
- result = UnitTestResult.CreateFailure (GettextCatalog.GetString ("Undhandled exception"), null);
+ result = UnitTestResult.CreateFailure (GettextCatalog.GetString ("Unhandled exception"), null);
}
else if (!localMonitor.Canceled) {
LoggingService.LogError (ex.ToString ());