Skip to content

Commit 1292612

Browse files
committed
fix build
1 parent 1ba478a commit 1292612

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/service/ProjectOptionsTests.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,8 @@ let ``Test OtherOptions order for GetProjectOptionsFromScript`` () =
448448

449449
projOpts.OtherOptions
450450
|> Array.map (fun s -> if s.StartsWith "--" then s else Path.GetFileNameWithoutExtension s)
451-
|> shouldEqual expected2
451+
|> Array.sort
452+
|> shouldEqual (Array.sort expected2)
452453
let otherArgs = [|"--noframework"; "--warn:3"; "System.Numerics"; "mscorlib"; "FSharp.Core"; "System"; "System.Xml"; "System.Runtime.Remoting"; "System.Runtime.Serialization.Formatters.Soap"; "System.Data"; "System.Drawing"; "System.Core"; "System.Runtime"; "System.Linq"; "System.Reflection"; "System.Linq.Expressions"; "System.Threading.Tasks"; "System.IO"; "System.Net.Requests"; "System.Collections"; "System.Runtime.Numerics"; "System.Threading"; "System.Web"; "System.Web.Services"; "System.Windows.Forms"; "FSharp.Compiler.Interactive.Settings"|]
453454
test "Main1" otherArgs
454455
test "Main2" otherArgs

0 commit comments

Comments
 (0)