Skip to content

Commit

Permalink
Nunit Domain Fix per fsprojects#855
Browse files Browse the repository at this point in the history
Aligning Fake Nunit Domain model to what Nunit docs say
http://www.nunit.org/index.php?p=consoleCommandLine&r=2.5
  • Loading branch information
TheAngryByrd committed Jul 24, 2015
1 parent 8e9dd37 commit 052cff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/FakeLib/UnitTest/NUnit/Common.fs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type NUnitDomainModel =
| MultipleDomainModel with
member x.ParamString =
match x with
| DefaultDomainModel -> ""
| DefaultDomainModel -> "None"
| SingleDomainModel -> "Single"
| MultipleDomainModel -> "Multiple"

Expand Down Expand Up @@ -136,7 +136,7 @@ let NUnitDefaults =
XsltTransformFile = ""
TimeOut = TimeSpan.FromMinutes 5.0
DisableShadowCopy = false
Domain = DefaultDomainModel
Domain = SingleDomainModel
ErrorLevel = Error
Fixture = ""}

Expand Down

0 comments on commit 052cff2

Please sign in to comment.