Skip to content

Commit 95d15ca

Browse files
committed
Fix test
1 parent 2f1b5e4 commit 95d15ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ public void DynamicExpressionParser_ParseLambda_SupportEnumerationStringComparis
814814
// Act
815815
var expression = DynamicExpressionParser.ParseLambda(new[] { p0 }, typeof(bool), expressionAsString);
816816
Delegate del = expression.Compile();
817-
bool? result = del.DynamicInvoke("testing") as bool?;
817+
bool? result = del.DynamicInvoke(testValue) as bool?;
818818

819819
// Assert
820820
Check.That(result).IsEqualTo(expectedResult);

0 commit comments

Comments
 (0)