Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmanela committed Sep 28, 2018
1 parent 777b50a commit d99d80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chutzpah/TestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ private TestCaseSummary ProcessTestPaths(IEnumerable<string> testPaths,

private IChutzpahWebServerHost SetupWebServerHost(ConcurrentBag<TestContext> testContexts, TestOptions options)
{
var needsServer = options.Engine != Engine.Phantom;
var needsServer = options.Engine.GetValueOrDefault() != Engine.Phantom;

IChutzpahWebServerHost webServerHost = null;
var contextUsingWebServer = testContexts.Where(x => x.TestFileSettings.Server?.Enabled.GetValueOrDefault() == true).ToList();
Expand Down

0 comments on commit d99d80c

Please sign in to comment.