go fmt
This commit is contained in:
parent
88847aed71
commit
3c4c5a15b4
3 changed files with 6 additions and 6 deletions
|
@ -4,8 +4,8 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
|
|
|
@ -22,11 +22,11 @@ func TestNewWorkflow(t *testing.T) {
|
||||||
runcount := 0
|
runcount := 0
|
||||||
successWorkflow := NewPipelineExecutor(
|
successWorkflow := NewPipelineExecutor(
|
||||||
func() error {
|
func() error {
|
||||||
runcount ++
|
runcount++
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
func() error {
|
func() error {
|
||||||
runcount ++
|
runcount++
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
assert.Nil(successWorkflow())
|
assert.Nil(successWorkflow())
|
||||||
|
|
Loading…
Reference in a new issue