File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/FSharpLint.Core.Tests/Rules Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ type TestAstNodeRuleBase (rule:Rule) =
2828
2929 let globalConfig = Option.defaultValue GlobalRuleConfig.Default globalConfig
3030
31- match parseResults |> Async.RunSynchronously with
31+ match Async.RunSynchronously parseResults with
3232 | ParseFileResult.Success parseInfo ->
3333 let syntaxArray = AbstractSyntaxArray.astToArray parseInfo.Ast
3434 let checkResult =
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ type TestHintMatcherBase () =
5151
5252 let globalConfig = Option.defaultValue GlobalRuleConfig.Default globalConfig
5353
54- match parseResults |> Async.RunSynchronously with
54+ match Async.RunSynchronously parseResults with
5555 | ParseFileResult.Success parseInfo ->
5656 let syntaxArray = AbstractSyntaxArray.astToArray parseInfo.Ast
5757 let checkResult =
You can’t perform that action at this time.
0 commit comments