Skip to content

Commit

Permalink
revert changes to TestFixtureSourceData.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachstec committed Nov 13, 2024
1 parent 22de9e5 commit d6cd90d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/NUnitFramework/testdata/TestFixtureSourceData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ public StaticProperty_SameClass(string arg, string expected) : base(arg, expecte
{
}

public static object[] StaticProperty => new object[] { new object[] { "StaticPropertyInClass" } };
public static object[] StaticProperty
{
get { return new object[] { new object[] { "StaticPropertyInClass" } }; }
}
}

[TestFixtureSource(nameof(StaticProperty))]
Expand Down

0 comments on commit d6cd90d

Please sign in to comment.