chore: lint sink_test.go (#10765)

This commit is contained in:
Kayla Washburn 2023-11-17 11:45:24 -05:00 committed by GitHub
parent e448c10122
commit 875cae1fc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,17 +1,17 @@
package cliutil_test
import (
"errors"
"testing"
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"
"github.com/coder/coder/v2/cli/cliutil"
)
func TestDiscardAfterClose(t *testing.T) {
t.Parallel()
exErr := errors.New("test")
exErr := xerrors.New("test")
fwc := &fakeWriteCloser{err: exErr}
uut := cliutil.DiscardAfterClose(fwc)