Skip to content

Commit

Permalink
fixup! Make code style consistent with the latest Fantomas settings
Browse files Browse the repository at this point in the history
  • Loading branch information
xperiandri committed Aug 6, 2024
1 parent c2dd6f4 commit 8217ad4
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,7 @@ let tests =

Expect.equal
"Expected correct declaration of 'Start'"
{ Declaration.Empty with
File = scriptFile
Line = 37 }
{ Declaration.Empty with File = scriptFile; Line = 37 }
startTarget.Declaration

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

Expect.equal
"Expected correct declaration of 'TestTarget'"
{ Declaration.Empty with
File = scriptFile
Line = 39 }
{ Declaration.Empty with File = scriptFile; Line = 39 }
testTarget.Declaration

Expect.equal
"Expected correct hard dependencies of 'TestTarget'"
[ { Name = "Start"
Declaration =
{ Declaration.Empty with
File = scriptFile
Line = 46 } } ]
Declaration = { Declaration.Empty with File = scriptFile; Line = 46 } } ]
testTarget.HardDependencies

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

0 comments on commit 8217ad4

Please sign in to comment.