Skip to content

Commit

Permalink
Tidy whitespace
Browse files Browse the repository at this point in the history
Remove some extra whitespace that VS Code removed.
  • Loading branch information
martincostello committed Jun 21, 2023
1 parent cb69777 commit 2890e5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Task("__RunMutationTests")
TestProject(File("../src/Polly/Polly.csproj"), File("./Polly.Specs/Polly.Specs.csproj"), "Polly.csproj");
context.Environment.WorkingDirectory = oldDirectory;
void TestProject(FilePath proj, FilePath testProj, string project)
{
var dotNetBuildSettings = new DotNetBuildSettings
Expand All @@ -191,9 +191,9 @@ Task("__RunMutationTests")
var score = int.Parse(mutationScore);
Information($"Running mutation tests for '{proj}'. Test Project: '{testProj}'");
var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project}";
var result = StartProcess("dotnet", args);
if (result != 0)
{
Expand Down

0 comments on commit 2890e5a

Please sign in to comment.