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