Skip to content

Commit 03ab167

Browse files
committed
fixup test
Signed-off-by: Neil South <neil.south@answerdigital.com>
1 parent 02e0b20 commit 03ab167

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/UnitTests/WorkflowExecuter.Tests/Services/WorkflowExecuterServiceTests.cs

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3161,6 +3161,7 @@ public async Task ArtifactReceveid_Valid_ReturnesTrue()
31613161

31623162
Assert.True(result);
31633163
}
3164+
31643165
[Fact]
31653166
public async Task ProcessArtifactReceived_Calls_WorkflowInstanceRepository_UpdateTaskOutputArtifactsAsync()
31663167
{
@@ -3174,7 +3175,7 @@ public async Task ProcessArtifactReceived_Calls_WorkflowInstanceRepository_Updat
31743175
var workflowInstance = new WorkflowInstance
31753176
{
31763177
WorkflowId = "789", Tasks = new List<TaskExecution>()
3177-
{ new TaskExecution() { TaskId = "not456" } }
3178+
{ new TaskExecution() { TaskId = "456" } }
31783179
};
31793180
_workflowInstanceRepository.Setup(w => w.GetByWorkflowInstanceIdAsync(message.WorkflowInstanceId))!
31803181
.ReturnsAsync(workflowInstance);

0 commit comments

Comments
 (0)