Skip to content

Commit

Permalink
Fixed compile failure
Browse files Browse the repository at this point in the history
  • Loading branch information
roryprimrose committed Mar 15, 2020
1 parent a22c979 commit 81c9671
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ModelBuilder.UnitTests/DefaultExecuteStrategyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void BuildParameterThrowsExceptionWithNullPropertyInfo()
{
var sut = new BuildParameterWrapper();

Action action = () => sut.Run();
Action action = () => sut.RunTest();

action.Should().Throw<ArgumentNullException>();
}
Expand All @@ -96,7 +96,7 @@ public void BuildPropertyThrowsExceptionWithNullPropertyInfo()
{
var sut = new BuildPropertyWrapper();

Action action = () => sut.Run();
Action action = () => sut.RunTest();

action.Should().Throw<ArgumentNullException>();
}
Expand Down Expand Up @@ -140,7 +140,7 @@ public void BuildTypeThrowsExceptionWithNullType()
{
var sut = new BuildTypeWrapper();

Action action = () => sut.Run();
Action action = () => sut.RunTest();

action.Should().Throw<ArgumentNullException>();
}
Expand Down

0 comments on commit 81c9671

Please sign in to comment.