Skip to content

Commit

Permalink
removed paralllel on pipe test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Sep 22, 2023
1 parent 138a5ae commit f20f8d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkg/fsys/read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ func TestReadWords(t *testing.T) {
})
}

func TestReadPipe(t *testing.T) {
t.Parallel()
func TestReadPipe(t *testing.T) { //nolint:paralleltest
// do not run in parallel as it uses os.Stdin
type args struct {
input string
}
Expand All @@ -259,7 +259,6 @@ func TestReadPipe(t *testing.T) {
{"utf8", args{"hello 😄"}, []byte("hello 😄\n"), false},
}
t.Run("", func(t *testing.T) {
t.Parallel()
for _, tt := range tests {
r, err := mock.Input(tt.args.input)
if err != nil {
Expand Down

0 comments on commit f20f8d8

Please sign in to comment.