-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup some remaining traits in some tests. #66785
Conversation
@@ -32,10 +32,11 @@ | |||
namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Formatting.Indentation | |||
{ | |||
[UseExportProvider] | |||
[Trait(Traits.Feature, Traits.Features.Formatting)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💭 Maybe just SmartTokenFormatting
was meant here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
honestly, i would remove the disparate traits here and just go with one. When i'm genuinely testing formatting, i always want to run all of these. :)
@@ -595,6 +589,7 @@ void OtherTypeMethod() | |||
[InlineData("FixAllInContainingMember")] | |||
[InlineData("FixAllInContainingType")] | |||
[Trait(Traits.Feature, Traits.Features.CodeActionsAddBraces)] | |||
[Trait(Traits.Feature, Traits.Features.CodeActionsAddBraces)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This duplication doesn't seem right. Is it intended?
No description provided.