From 93ee60aaa3baefaed5ce9dd0dd1bda80a02c71e8 Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Sat, 15 Oct 2016 17:04:23 -0700 Subject: [PATCH] Add comments. --- .../CSharpTest/Formatting/FormattingEngineTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/EditorFeatures/CSharpTest/Formatting/FormattingEngineTests.cs b/src/EditorFeatures/CSharpTest/Formatting/FormattingEngineTests.cs index 6411f07f8bc..14e63bcdec5 100644 --- a/src/EditorFeatures/CSharpTest/Formatting/FormattingEngineTests.cs +++ b/src/EditorFeatures/CSharpTest/Formatting/FormattingEngineTests.cs @@ -1202,6 +1202,8 @@ class C [WpfFact, Trait(Traits.Feature, Traits.Features.SmartTokenFormatting)] public async Task KeepTabsInCommentsWhenFormattingIsOff() { + // There are tabs in this test case. Tools that touch the Roslyn repo should + // not remove these as we are explicitly testing tab behavior. var code = @"class Program { @@ -1232,6 +1234,8 @@ static void Main() [WpfFact, Trait(Traits.Feature, Traits.Features.SmartTokenFormatting)] public async Task DoNotKeepTabsInCommentsWhenFormattingIsOn() { + // There are tabs in this test case. Tools that touch the Roslyn repo should + // not remove these as we are explicitly testing tab behavior. var code = @"class Program { static void Main() -- GitLab