File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed
src/test/Fake.Core.IntegrationTests Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments