From 223ee6f0cafae22cb0eab523783ed5a38eaedc5d Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Wed, 26 Aug 2015 10:32:58 -0700 Subject: [PATCH] Fixed unintentional mixed tabs/spaces in XML doc comment tests --- .../DocumentationCommentTests.cs | 80 +++++++++---------- .../DocumentationCommentTests.vb | 40 +++++----- 2 files changed, 60 insertions(+), 60 deletions(-) diff --git a/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs b/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs index 678934f6592..634b92d48b1 100644 --- a/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs +++ b/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs @@ -1345,24 +1345,24 @@ public void TestOpenLineAbove1() const string code = @"class C { - /// + /// /// stuff$$ /// - void M() - { - } + void M() + { + } }"; var expected = @"class C { - /// + /// /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1375,24 +1375,24 @@ public void TestOpenLineAbove2() const string code = @"class C { - /// + /// /// $$stuff /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1405,12 +1405,12 @@ public void TestOpenLineAbove3() const string code = @"class C { - /// $$ + /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; // Note that the caret position specified below does not look correct because @@ -1419,12 +1419,12 @@ void M() @"class C { $$ - /// + /// /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1437,24 +1437,24 @@ public void TestOpenLineBelow1() const string code = @"class C { - /// + /// /// stuff$$ /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// stuff /// $$ /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineBelow(code, expected); @@ -1467,24 +1467,24 @@ public void TestOpenLineBelow2() const string code = @"class C { - /// + /// /// $$stuff /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// stuff /// $$ /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineBelow(code, expected); diff --git a/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb b/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb index aa5a601306a..5eff57998b3 100644 --- a/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb +++ b/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb @@ -739,20 +739,20 @@ End Module Public Sub TestOpenLineAbove1() Const code = " Class C - ''' + ''' ''' stuff$$ ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -764,20 +764,20 @@ End Class Public Sub TestOpenLineAbove2() Const code = " Class C - ''' + ''' ''' $$stuff ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -789,10 +789,10 @@ End Class Public Sub TestOpenLineAbove3() Const code = " Class C - ''' $$ + ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -801,10 +801,10 @@ End Class Const expected = " Class C $$ - ''' + ''' ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -816,20 +816,20 @@ End Class Public Sub TestOpenLineBelow1() Const code = " Class C - ''' + ''' ''' stuff$$ ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' stuff ''' $$ ''' - Sub M() + Sub M() End Sub End Class " @@ -841,20 +841,20 @@ End Class Public Sub TestOpenLineBelow2() Const code = " Class C - ''' + ''' ''' $$stuff ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' stuff ''' $$ ''' - Sub M() + Sub M() End Sub End Class " -- GitLab