Skip to content

Commit 0ccb792

Browse files
committed
fix typo in UT
1 parent c90663b commit 0ccb792

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/WorkflowCore.UnitTests/BasePersistenceFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void GetWorkflowInstances_should_retrieve_workflows()
110110
SleepUntil = new DateTime(2000, 1, 1).ToUniversalTime(),
111111
Scope = new List<string>() { "4", "3", "2", "1" }
112112
});
113-
var workflowId02 = Subject.CreateNewWorkflow(workflow01).Result;
113+
var workflowId02 = Subject.CreateNewWorkflow(workflow02).Result;
114114

115115
var workflow03 = new WorkflowInstance()
116116
{
@@ -130,7 +130,7 @@ public void GetWorkflowInstances_should_retrieve_workflows()
130130
SleepUntil = new DateTime(2000, 1, 1).ToUniversalTime(),
131131
Scope = new List<string>() { "4", "3", "2", "1" }
132132
});
133-
var workflowId03 = Subject.CreateNewWorkflow(workflow01).Result;
133+
var workflowId03 = Subject.CreateNewWorkflow(workflow03).Result;
134134

135135
var retrievedWorkflows = Subject.GetWorkflowInstances(new[] { workflowId01, workflowId02, workflowId03 }).Result;
136136

0 commit comments

Comments
 (0)