Skip to content

Commit

Permalink
Merge pull request #2554 from nunit/pull_TestFixtureData_SetName
Browse files Browse the repository at this point in the history
Made TestFixtureData.SetName internal for 3.9 (see #2538)
  • Loading branch information
rprouse committed Nov 10, 2017
2 parents 84d0b9f + 66e20ec commit 9b2159f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NUnitFramework/framework/TestFixtureData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public TestFixtureData(object arg1, object arg2, object arg3)
/// Sets the name of the test fixture
/// </summary>
/// <returns>The modified TestFixtureData instance</returns>
public TestFixtureData SetName(string name)
internal TestFixtureData SetName(string name)
{
TestName = name;
return this;
Expand Down

0 comments on commit 9b2159f

Please sign in to comment.