summaryrefslogtreecommitdiffstats
path: root/client/go/internal/cli/cmd/deploy_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/internal/cli/cmd/deploy_test.go')
-rw-r--r--client/go/internal/cli/cmd/deploy_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/go/internal/cli/cmd/deploy_test.go b/client/go/internal/cli/cmd/deploy_test.go
index f97177373eb..9eaf878bc5e 100644
--- a/client/go/internal/cli/cmd/deploy_test.go
+++ b/client/go/internal/cli/cmd/deploy_test.go
@@ -9,7 +9,6 @@ import (
"testing"
"github.com/stretchr/testify/assert"
- "github.com/stretchr/testify/require"
"github.com/vespa-engine/vespa/client/go/internal/mock"
"github.com/vespa-engine/vespa/client/go/internal/vespa"
)
@@ -112,7 +111,7 @@ func assertDeploy(applicationPackage string, arguments []string, t *testing.T) {
cli, stdout, _ := newTestCLI(t)
client := &mock.HTTPClient{}
cli.httpClient = client
- require.Nil(t, cli.Run(arguments...))
+ assert.Nil(t, cli.Run(arguments...))
assert.Equal(t,
"\nSuccess: Deployed "+applicationPackage+"\n",
stdout.String())