Skip to content

Commit

Permalink
Move utility to private (nunit#4767)
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje authored Jul 26, 2024
1 parent c4952ce commit 0cce6d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NUnitFramework/framework/TestContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ public IDictionary<PropertyHierachyItem, IList> PropertyHierarchy()
/// The returned values include the name of the level they are found at.
/// </summary>
/// <returns></returns>
public IList<PropertyValueHierarchyItem> PropertyValues(string property)
private IList<PropertyValueHierarchyItem> PropertyValues(string property)
{
var values = new List<PropertyValueHierarchyItem>();
ITest? test = _test;
Expand Down

0 comments on commit 0cce6d1

Please sign in to comment.