Skip to content

Commit

Permalink
Merge pull request #2028 from vbfox/patch-1
Browse files Browse the repository at this point in the history
Fix Expecto ParallelWorkers
  • Loading branch information
matthid authored Jul 21, 2018
2 parents 98074fb + 14945bd commit 2959b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Fake.DotNet.Testing.Expecto/Expecto.fs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type Params =
then sprintf "%s%s " s value |> sb.Append
else sb
let appendIfNotEqual other value s (sb: StringBuilder.StringBuilder) =
if other = value
if other <> value
then sprintf "%s%A " s value |> sb.Append
else sb
let appendList list s (sb: StringBuilder.StringBuilder) =
Expand Down

0 comments on commit 2959b74

Please sign in to comment.