Skip to content

Commit

Permalink
One of the tests changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Milan Mikuš committed Oct 25, 2023
1 parent 4206e88 commit ef16bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tests/Parser/Binding/BindingParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ public void BindingParser_Lambda_NoTypeInfo_MultipleParameters()
[DataRow("(string arg) => Method(arg)", "string")]
[DataRow("(float arg) => Method(arg)", "float")]
[DataRow("(decimal arg) => Method(arg)", "decimal")]
[DataRow("(System.Collections.Generic.List<int> arg) => Method(arg)", "System.Collections.Generic.List<int>")]
[DataRow("(System.Collections.Generic.List<int>.Subtype arg) => Method(arg)", "System.Collections.Generic.List<int>.Subtype")]
public void BindingParser_Lambda_WithTypeInfo_SingleParameter(string expr, string type)
{
var parser = bindingParserNodeFactory.SetupParser(expr);
Expand Down

0 comments on commit ef16bc3

Please sign in to comment.