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 =
241
241
242
242
Expect.equal
243
243
" Expected correct declaration of 'Start'"
244
- { Declaration.Empty with
245
- File = scriptFile
246
- Line = 37 }
244
+ { Declaration.Empty with File = scriptFile; Line = 37 }
247
245
startTarget.Declaration
248
246
249
247
Expect.equal " Expected correct hard dependencies of 'Start'" [] startTarget.HardDependencies
@@ -253,18 +251,13 @@ let tests =
253
251
254
252
Expect.equal
255
253
" Expected correct declaration of 'TestTarget'"
256
- { Declaration.Empty with
257
- File = scriptFile
258
- Line = 39 }
254
+ { Declaration.Empty with File = scriptFile; Line = 39 }
259
255
testTarget.Declaration
260
256
261
257
Expect.equal
262
258
" Expected correct hard dependencies of 'TestTarget'"
263
259
[ { Name = " Start"
264
- Declaration =
265
- { Declaration.Empty with
266
- File = scriptFile
267
- Line = 46 } } ]
260
+ Declaration = { Declaration.Empty with File = scriptFile; Line = 46 } } ]
268
261
testTarget.HardDependencies
269
262
270
263
Expect.equal " Expected correct description of 'TestTarget'" " " testTarget.Description
You can’t perform that action at this time.
0 commit comments