Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Mar 20, 2024
1 parent 9a43015 commit cf3729c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dotnet-ef.Tests/ExeTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public void ToArguments_works()
}

private static string ToArguments(IReadOnlyList<string> args)
=> (string)typeof(Exe).GetMethod("ToArguments", BindingFlags.Static | BindingFlags.NonPublic)!
=> (string)typeof(Exe).GetMethod("ToArguments", BindingFlags.Static | BindingFlags.Public)!
.Invoke(null, [args])!;
}

0 comments on commit cf3729c

Please sign in to comment.