Skip to content

Commit e2f1c95

Browse files
committed
fix compile error
1 parent 9fb290d commit e2f1c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/System.CommandLine.Tests/ArgumentTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public void custom_parsing_of_sequence_value_from_an_argument_with_one_token()
161161
{
162162
var argument = new Argument<IEnumerable<int>>(result =>
163163
{
164-
result.Value = result.Tokens.Single().Value.Split(",").Select(int.Parse);
164+
result.Value = result.Tokens.Single().Value.Split(',').Select(int.Parse);
165165

166166
return true;
167167
});

0 commit comments

Comments
 (0)