Skip to content

Commit

Permalink
make test independent from DirectoryInfo.GetFiles order
Browse files Browse the repository at this point in the history
  • Loading branch information
smoothdeveloper committed May 3, 2016
1 parent 943d832 commit 7d3fbc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let ``simple dependencies generates expected scripts``() =
directPaket (sprintf "generate-include-scripts framework %s" framework) scenario |> ignore

let files = getGeneratedScriptFiles framework scenario
let actualFiles = files |> Array.map (fun f -> f.Name)
let actualFiles = files |> Array.map (fun f -> f.Name) |> Array.sortBy id
let expectedFiles = [|
"include.argu.csx"
"include.argu.fsx"
Expand Down

0 comments on commit 7d3fbc5

Please sign in to comment.