提交 2fd55968 编写于 作者: D David Karlaš

Updated unit test to test just inserted code, to work around unit test...

Updated unit test to test just inserted code, to work around unit test infrastructure  assumption that all code is `\r\n`
上级 5508d1c0
......@@ -38,9 +38,9 @@ class C
[WpfFact, Trait(Traits.Feature, Traits.Features.DocumentationComments)]
public void TypingCharacter_Class_NewLine()
{
var code = "//$$\nclass C\n{\n}";
var code = "//$$\r\nclass C\r\n{\r\n}";
var expected = "/// <summary>\n/// $$\n/// </summary>\nclass C\n{\n}";
var expected = "/// <summary>\n/// $$\n/// </summary>\r\nclass C\r\n{\r\n}";
VerifyTypingCharacter(code, expected, newLine: "\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册