Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Dec 19, 2023
1 parent c3e291b commit 47e0a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/OmniSharp.Tests/CommandLineApplicationFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void AllowsEqualsSignInSolutionPath(string arg1, string arg2, string arg3
{
var app = new CommandLineApplication();
app.OnExecute(() => 0);
app.Execute(new[] { arg1, arg2, arg3 });
app.Execute(new[] { arg1, arg2, arg3 }.OfType<string>().ToArray());

Assert.Single(app.OtherArgs);
Assert.Equal("a=b", app.OtherArgs.First());
Expand Down

0 comments on commit 47e0a7b

Please sign in to comment.