Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2020-12-05 06:43:03 +0300
committerAnthony Fok <foka@debian.org>2020-12-05 06:43:03 +0300
commitc84ad8db821c10225c0e603c6ec920c67b6ce36f (patch)
tree2ae0fd22b41e7f9c8acce091d9b2a947eccf944b /commands
parent4e0acb89b793d8895dc53eb8887be27430c3ab31 (diff)
deps: Bump github.com/spf13/cobra from 0.15.0 to 0.20.0
The substring match in TestExecute deploy test is adjusted accordingly.
Diffstat (limited to 'commands')
-rw-r--r--commands/commands_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/commands_test.go b/commands/commands_test.go
index 0b1543169..a0eeb157b 100644
--- a/commands/commands_test.go
+++ b/commands/commands_test.go
@@ -89,7 +89,7 @@ func TestExecute(t *testing.T) {
defer clean()
resp := Execute([]string{"deploy", "-s=" + dir, "-e=staging", "--target=mydeployment", "--dryRun"})
c.Assert(resp.Err, qt.Not(qt.IsNil))
- c.Assert(resp.Err.Error(), qt.Contains, `no provider registered for "hugocloud"`)
+ c.Assert(resp.Err.Error(), qt.Contains, `no driver registered for "hugocloud"`)
})
c.Run("list", func(c *qt.C) {