From 8217ad4884b93612f6cd7e1567daad7c02afb0cd Mon Sep 17 00:00:00 2001 From: Andrii Chebukin Date: Tue, 30 Jul 2024 17:17:49 +0400 Subject: [PATCH] fixup! Make code style consistent with the latest Fantomas settings --- .../SimpleHelloWorldTests.fs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs b/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs index 85952e8f194..fd215bcae30 100644 --- a/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs +++ b/src/test/Fake.Core.IntegrationTests/SimpleHelloWorldTests.fs @@ -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 @@ -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