From 77839b300e90f9d09b2eae0a49cf241b5a7d706d Mon Sep 17 00:00:00 2001 From: webwarrior Date: Tue, 30 Jan 2024 11:24:24 +0100 Subject: [PATCH] Tests.Core: cosmetic changes Placed triple-quote closing elements at next line. --- .../EnsureTailCallDiagnosticsInRecursiveFunctions.fs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/FSharpLint.Core.Tests/Rules/Conventions/EnsureTailCallDiagnosticsInRecursiveFunctions.fs b/tests/FSharpLint.Core.Tests/Rules/Conventions/EnsureTailCallDiagnosticsInRecursiveFunctions.fs index c920fa03e..b9e0cccda 100644 --- a/tests/FSharpLint.Core.Tests/Rules/Conventions/EnsureTailCallDiagnosticsInRecursiveFunctions.fs +++ b/tests/FSharpLint.Core.Tests/Rules/Conventions/EnsureTailCallDiagnosticsInRecursiveFunctions.fs @@ -15,7 +15,8 @@ let rec Foo someParam = if someParam then Foo false else - ()""" + () +""" Assert.IsTrue <| this.ErrorExistsAt(2, 8) @@ -27,7 +28,8 @@ let rec Foo someParam = if someParam then Foo false else - ()""" + () +""" Assert.IsTrue this.NoErrorsExist @@ -38,6 +40,7 @@ let rec Foo someParam = () module Bar = - let Foo = 0""" + let Foo = 0 +""" Assert.IsTrue this.NoErrorsExist