File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
main/kotlin/org/rust/ide/formatter
test/kotlin/org/rust/ide/formatter Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,4 @@ val CodeStyleSettings.rust: RsCodeStyleSettings
14
14
15
15
object RustfmtTestmarks {
16
16
val rustfmtUsed: Testmark = Testmark (" rustfmtUsed" )
17
- val builtinPostProcess: Testmark = Testmark (" builtinPostProcess" )
18
17
}
Original file line number Diff line number Diff line change 6
6
package org.rust.ide.formatter
7
7
8
8
import org.intellij.lang.annotations.Language
9
- import org.rust.IgnoreInPlatform
10
9
import org.rust.cargo.project.settings.rustSettings
11
10
import org.rust.lang.core.psi.RsPsiFactory
12
11
import org.rust.lang.core.psi.RsStructItem
@@ -131,7 +130,6 @@ class RsTrailingCommaFormatProcessorTest : RsFormatterTestBase() {
131
130
}
132
131
""" )
133
132
134
- @IgnoreInPlatform(212 )
135
133
fun `test trailing comma processor works when RustfmtExternalFormatProcessor is used` () {
136
134
@Language(" Rust" )
137
135
val before = """
@@ -170,8 +168,6 @@ class RsTrailingCommaFormatProcessorTest : RsFormatterTestBase() {
170
168
// `Rustfmt` will not be used because of range restriction
171
169
myTextRange = RsPsiFactory (project).createFile(before).descendantOfTypeStrict<RsStructItem >()!! .textRange
172
170
173
- RustfmtTestmarks .builtinPostProcess.checkHit {
174
- doTextTest(before, after)
175
- }
171
+ doTextTest(before, after)
176
172
}
177
173
}
You can’t perform that action at this time.
0 commit comments