Skip to content

Commit ef81324

Browse files
committed
fixup! Make code style consistent with the latest Fantomas settings
1 parent 5d47a14 commit ef81324

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,7 @@ let tests =
241241

242242
Expect.equal
243243
"Expected correct declaration of 'Start'"
244-
{ Declaration.Empty with
245-
File = scriptFile
246-
Line = 37 }
244+
{ Declaration.Empty with File = scriptFile; Line = 37 }
247245
startTarget.Declaration
248246

249247
Expect.equal "Expected correct hard dependencies of 'Start'" [] startTarget.HardDependencies
@@ -253,18 +251,13 @@ let tests =
253251

254252
Expect.equal
255253
"Expected correct declaration of 'TestTarget'"
256-
{ Declaration.Empty with
257-
File = scriptFile
258-
Line = 39 }
254+
{ Declaration.Empty with File = scriptFile; Line = 39 }
259255
testTarget.Declaration
260256

261257
Expect.equal
262258
"Expected correct hard dependencies of 'TestTarget'"
263259
[ { Name = "Start"
264-
Declaration =
265-
{ Declaration.Empty with
266-
File = scriptFile
267-
Line = 46 } } ]
260+
Declaration = { Declaration.Empty with File = scriptFile; Line = 46 } } ]
268261
testTarget.HardDependencies
269262

270263
Expect.equal "Expected correct description of 'TestTarget'" "" testTarget.Description

0 commit comments

Comments
 (0)