Skip to content

Commit

Permalink
Merge branch 'release/0.4.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Sep 10, 2016
2 parents bfa3f86 + 265b25a commit bdb0188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Cake.Tfx.Tests/TfxExtensionPublishRunnerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void Should_Throw_If_Settings_Are_Null()

// Then
Assert.IsType<ArgumentNullException>(result);
Assert.Equal("settings", ((ArgumentNullException)result).ParamName);
Assert.Equal("publishSettings", ((ArgumentNullException)result).ParamName);
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion Source/Cake.Tfx.Tests/TfxExtensionShareRunnerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void Should_Throw_If_Settings_Are_Null()

// Then
Assert.IsType<ArgumentNullException>(result);
Assert.Equal("settings", ((ArgumentNullException)result).ParamName);
Assert.Equal("shareSettings", ((ArgumentNullException)result).ParamName);
}

[Fact]
Expand Down

0 comments on commit bdb0188

Please sign in to comment.