Skip to content

Commit

Permalink
Fixed default value for TestInvocation.Targets.noServer (#109)
Browse files Browse the repository at this point in the history
To ensure a sensible default which is also behavioral backward compatible, the correct default is `true`.

Pull request: #109
  • Loading branch information
lefou authored Jul 11, 2022
1 parent 24385be commit cd39500
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object TestInvocation {
targets: Seq[String],
expectedExitCode: Int = 0,
env: Map[String, String] = Map(),
noServer: Boolean = false
noServer: Boolean = true
) extends TestInvocation {
override def toString: String =
getClass().getSimpleName() +
Expand Down

0 comments on commit cd39500

Please sign in to comment.