Skip to content

Commit d578c89

Browse files
committed
fix test method
1 parent 1a29c4f commit d578c89

38 files changed

Lines changed: 1 addition & 1 deletion

AlgorithmsTest/3SumTest.cs

12 Bytes
Binary file not shown.

AlgorithmsTest/4SumTest.cs

12 Bytes
Binary file not shown.

AlgorithmsTest/AddTwoNumbersTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace AlgorithmsTest
77
public class AddTwoNumbersTest
88
{
99
[Theory]
10-
[MemberData("InputData_Property")]
10+
[MemberData(nameof(InputData_Property))]
1111
public void Test_AddTwoNumbers(ListNode<int> l1, ListNode<int> l2, List<int> output)
1212
{
1313
Assert.Equal(output,Solution002.AddTwoNumbers(l1, l2).ToList());
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)