Skip to content

Commit 3c68929

Browse files
author
Sébastien Geiser
committed
More correction after conflicts bad merge
1 parent 9c1c3e1 commit 3c68929

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CodingSeb.ExpressionEvaluator.Tests/ExpressionEvaluatorTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ public static IEnumerable<TestCaseData> TestCasesEvaluateWithSpecificEvaluator
15791579

15801580
#region Onthefly events (Pre events and/or Generics and/or Static)
15811581

1582-
ExpressionEvaluator evaluatorOnTheFlyGenericTypes = new ExpressionEvaluator(new Dictionary<string, object>
1582+
ExpressionEvaluator evaluatorOnTheFlies = new ExpressionEvaluator(new Dictionary<string, object>
15831583
{
15841584
{ "myvar1", 10 },
15851585
{ "myvar2", 3 },
@@ -1685,12 +1685,12 @@ void Evaluator_PreEvaluateVariable(object sender, VariablePreEvaluationEventArg
16851685
.SetCategory("On the fly var")
16861686
.SetCategory("Static Onthefly");
16871687

1688-
yield return new TestCaseData(evaluatorOnTheFlyGenericTypes
1688+
yield return new TestCaseData(evaluatorOnTheFlies
16891689
, "myvar1")
16901690
.Returns(5)
16911691
.SetCategory("var evaluation priority");
16921692

1693-
yield return new TestCaseData(evaluatorOnTheFlyGenericTypes
1693+
yield return new TestCaseData(evaluatorOnTheFlies
16941694
, "myvar2")
16951695
.Returns(3)
16961696
.SetCategory("var evaluation priority");

0 commit comments

Comments
 (0)