Skip to content

Commit 77839b3

Browse files
committed
Tests.Core: cosmetic changes
Placed triple-quote closing elements at next line.
1 parent c0afe28 commit 77839b3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/FSharpLint.Core.Tests/Rules/Conventions/EnsureTailCallDiagnosticsInRecursiveFunctions.fs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ let rec Foo someParam =
1515
if someParam then
1616
Foo false
1717
else
18-
()"""
18+
()
19+
"""
1920

2021
Assert.IsTrue <| this.ErrorExistsAt(2, 8)
2122

@@ -27,7 +28,8 @@ let rec Foo someParam =
2728
if someParam then
2829
Foo false
2930
else
30-
()"""
31+
()
32+
"""
3133

3234
Assert.IsTrue this.NoErrorsExist
3335

@@ -38,6 +40,7 @@ let rec Foo someParam =
3840
()
3941
4042
module Bar =
41-
let Foo = 0"""
43+
let Foo = 0
44+
"""
4245

4346
Assert.IsTrue this.NoErrorsExist

0 commit comments

Comments
 (0)