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:
authorMike Krüger <mkrueger@xamarin.com>2016-02-13 13:41:40 +0300
committerMike Krüger <mkrueger@xamarin.com>2016-02-13 13:41:40 +0300
commit97a4d5a7332a9c2e3325e35c9e51faac74327b9e (patch)
treefcdaccfd0aff2e4ec889c61e5c558e131e1d9c03 /main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs
parente5e10bc783f645c5354aa790af89cc437a1e1f75 (diff)
[UnitTest] Fixed unit tests.
Diffstat (limited to 'main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs')
-rw-r--r--main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs b/main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs
index f370d0f06e..1d79cc7d55 100644
--- a/main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs
+++ b/main/src/core/MonoDevelop.TextEditor.Tests/Mono.TextEditor.Tests/SyntaxHighlightingTests.cs
@@ -68,7 +68,7 @@ namespace Mono.TextEditor.Tests
public void TestSpans ()
{
TestOutput ("/* TestMe */",
- "<span foreground=\"#B0B0B0\" style=\"Italic\">/*</span><span foreground=\"#B0B0B0\" style=\"Italic\"> </span><span foreground=\"#B0B0B0\" style=\"Italic\">TestMe</span><span foreground=\"#B0B0B0\" style=\"Italic\"> </span><span foreground=\"#B0B0B0\" style=\"Italic\">*/</span>");
+ "<span foreground=\"#B0B0B0\">/* TestMe */</span>");
}
[Test]
@@ -130,7 +130,7 @@ namespace Mono.TextEditor.Tests
public void TestBug603 ()
{
TestOutput ("///<summary>foo bar</summary>",
- "<span foreground=\"#C8B97B\" style=\"Italic\">///</span><span foreground=\"#C8B97B\" style=\"Italic\">&lt;</span><span foreground=\"#C8B97B\" style=\"Italic\">summary</span><span foreground=\"#C8B97B\" style=\"Italic\">&gt;</span><span foreground=\"#97B488\" style=\"Italic\">foo bar</span><span foreground=\"#C8B97B\" style=\"Italic\">&lt;</span><span foreground=\"#C8B97B\" style=\"Italic\">/</span><span foreground=\"#C8B97B\" style=\"Italic\">summary</span><span foreground=\"#C8B97B\" style=\"Italic\">&gt;</span>");
+ "<span foreground=\"#C8B97B\">///&lt;summary&gt;</span><span foreground=\"#97B488\">foo bar</span><span foreground=\"#C8B97B\">&lt;/summary&gt;</span>");
}
[Test]