Skip to content

Commit e5d4eb0

Browse files
committed
Update ConstantExpectedTests.cs
1 parent 41e9f60 commit e5d4eb0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Tests/ConstantExpectedTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[TestFixture]
22
public class ConstantExpectedTests
33
{
4-
public static void Method([ConstantExpected] int b) { }
5-
public static void MethodWithMinMax([ConstantExpected(Min = -5, Max = 10)] int b) { }
4+
public void Method([ConstantExpected] int b) { }
5+
public void MethodWithMinMax([ConstantExpected(Min = -5, Max = 10)] int b) { }
66

77
// Invalid declaration
8-
// public static void InvalidRange([ConstantExpected(Min = 5, Max = -5)] int b) { }
8+
// public void InvalidRange([ConstantExpected(Min = 5, Max = -5)] int b) { }
99

10-
public static void Test(int variableNum)
10+
public void Test(int variableNum)
1111
{
1212
// Valid calls
1313
const int constNum = 10;

0 commit comments

Comments
 (0)