Skip to content

Commit

Permalink
fixed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
abbasc52 committed Aug 3, 2023
1 parent 62f4778 commit 0e3a166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/RulesEngine.UnitTest/BusinessRuleEngineTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ public async Task RulesEngineWithGlobalParam_RunsSuccessfully(string ruleFileNam
var result = await re.ExecuteAllRulesAsync("MyWorkflow", new RuleParameter("input1", input1));

Assert.NotNull(result);
Assert.True(result[0].IsSuccess);
Assert.False(result[0].IsSuccess);
Assert.True(result[1].IsSuccess);
}

Expand Down

0 comments on commit 0e3a166

Please sign in to comment.