Update tests

This commit is contained in:
Sipke Schoorstra 2023-03-09 14:49:40 +01:00
parent d52bf593dd
commit 3128838fee
2 changed files with 2 additions and 4 deletions

View file

@ -22,7 +22,7 @@ public static class ForWorkflow
new WriteLine("Counting down from 10 to 1:"),
new For(10, 1)
{
CurrentValue = new Output<MemoryBlockReference?>(currentValueVariable),
CurrentValue = new Output<object?>(currentValueVariable),
Body = new Sequence
{
Activities =

View file

@ -1,9 +1,7 @@
using Elsa.Expressions.Models;
using Elsa.Workflows.Core.Abstractions;
using Elsa.Workflows.Core.Activities;
using Elsa.Workflows.Core.Contracts;
using Elsa.Workflows.Core.Models;
using Elsa.Workflows.Core.Services;
namespace Elsa.IntegrationTests.Activities;
@ -20,7 +18,7 @@ class BreakForWorkflow : WorkflowBase
new WriteLine("Start"),
new For(0, 3)
{
CurrentValue = new Output<MemoryBlockReference?>(currentValue),
CurrentValue = new Output<object?>(currentValue),
Body = new Sequence
{
Activities =