Skip to content

Commit a3fc890

Browse files
authored
Merge pull request #112 from cschleiden/fix-readme-indent
Fix indentation in Readme
2 parents 3b6d0af + f178d6c commit a3fc890

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -477,14 +477,14 @@ go-workflows includes support for testing workflows, a simple example using mock
477477
func TestWorkflow(t *testing.T) {
478478
tester := tester.NewWorkflowTester[int](Workflow1)
479479
480-
// Mock two activities
480+
// Mock two activities
481481
tester.OnActivity(Activity1, mock.Anything, 35, 12).Return(47, nil)
482482
tester.OnActivity(Activity2, mock.Anything, mock.Anything, mock.Anything).Return(12, nil)
483483
484-
// Run workflow with inputs
484+
// Run workflow with inputs
485485
tester.Execute("Hello world")
486486
487-
// Workflows always run to completion, or time-out
487+
// Workflows always run to completion, or time-out
488488
require.True(t, tester.WorkflowFinished())
489489
490490
wr, werr := tester.WorkflowResult()

0 commit comments

Comments
 (0)