We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7412069 + 2ca5f35 commit 6c88567Copy full SHA for 6c88567
1 file changed
deisctl/deisctl_test.go
@@ -6,6 +6,8 @@ import (
6
"os"
7
"strings"
8
"testing"
9
+
10
+ "github.com/deis/deis/version"
11
)
12
13
// commandOutput returns stdout for a deisctl command line as a string.
@@ -54,7 +56,7 @@ func TestUsage(t *testing.T) {
54
56
func TestVersion(t *testing.T) {
55
57
args := []string{"--version"}
58
out := commandOutput(args)
- if !strings.HasPrefix(out, Version) {
59
+ if !strings.HasPrefix(out, version.Version) {
60
t.Error(out)
61
}
62
0 commit comments