Skip to content

Commit 2a7509d

Browse files
committed
fix mono test
1 parent 0b4337a commit 2a7509d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/service/ProjectOptionsTests.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,21 +382,21 @@ let ``Project file parsing -- Exe with a PCL reference``() =
382382

383383

384384
[<Test>]
385-
let ``Project file parsing -- project reference in release mode``() =
385+
let ``Project file parsing -- project file contains project reference to out-of-solution project and is used in release mode``() =
386386

387387
let f = normalizePath(__SOURCE_DIRECTORY__ + @"/data/TestProject/TestProject.fsproj")
388388
let p = ProjectCracker.GetProjectOptionsFromProjectFile(f,[("Configuration","Release")])
389389
let references = getReferencedFilenamesAndContainingFolders p.OtherOptions |> set
390-
references |> should contain ("FSharp.Core.dll", "4.3.0.0")
390+
// Check the reference is to a release DLL
391391
references |> should contain ("TestTP.dll", "Release")
392392

393393
[<Test>]
394-
let ``Project file parsing -- project reference in debug mode``() =
394+
let ``Project file parsing -- project file contains project reference to out-of-solution project and is used in debug mode``() =
395395

396396
let f = normalizePath(__SOURCE_DIRECTORY__ + @"/data/TestProject/TestProject.fsproj")
397397
let p = ProjectCracker.GetProjectOptionsFromProjectFile(f,[("Configuration","Debug")])
398398
let references = getReferencedFilenamesAndContainingFolders p.OtherOptions |> set
399-
references |> should contain ("FSharp.Core.dll", "4.3.0.0")
399+
// Check the reference is to a debug DLL
400400
references |> should contain ("TestTP.dll", "Debug")
401401

402402
#endif

0 commit comments

Comments
 (0)