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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Laval <jeremie.laval@gmail.com>2012-11-29 21:38:15 +0400
committerJeremie Laval <jeremie.laval@gmail.com>2012-11-29 21:40:15 +0400
commit74b96c4c81daa1fbb9202c5becb91bfc9c2b5a99 (patch)
treeabdd98a954e585619eed9cc1a8bb59d2da6aeed6
parent3e8896c8a8aca58c953ecf8ea5f573fba11aa8b1 (diff)
[monkeydoc] Precise the HelpSource that is tested in the error output
-rw-r--r--mcs/tools/monkeydoc/Test/Monkeydoc/HelpSourceTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/monkeydoc/Test/Monkeydoc/HelpSourceTests.cs b/mcs/tools/monkeydoc/Test/Monkeydoc/HelpSourceTests.cs
index 876f3f8051a..354fe91f4dd 100644
--- a/mcs/tools/monkeydoc/Test/Monkeydoc/HelpSourceTests.cs
+++ b/mcs/tools/monkeydoc/Test/Monkeydoc/HelpSourceTests.cs
@@ -70,7 +70,7 @@ namespace MonoTests.MonkeyDoc
foreach (var leaf in GetLeaves (rootTree.RootNode)) {
if (!rootTree.RenderUrl (leaf.PublicUrl, generator, out result) || leaf != result) {
- Console.WriteLine ("Error: " + leaf.PublicUrl);
+ Console.WriteLine ("Error: {0} with HelpSource {1} ", leaf.PublicUrl, leaf.Tree.HelpSource.Name);
errorCount++;
}
testCount++;