We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8965968 + 7362edf commit 54e9effCopy full SHA for 54e9eff
bluemix/version.go
@@ -3,7 +3,7 @@ package bluemix
3
import "fmt"
4
5
// Version is the SDK version
6
-var Version = VersionType{Major: 1, Minor: 6, Build: 0}
+var Version = VersionType{Major: 1, Minor: 6, Build: 1}
7
8
// VersionType describe version info
9
type VersionType struct {
testhelpers/terminal/test_ui.go
@@ -4,6 +4,7 @@ import (
"bytes"
"fmt"
"io"
+ "os"
"strings"
10
term "github.com/IBM-Cloud/ibm-cloud-cli-sdk/bluemix/terminal"
@@ -35,6 +36,9 @@ type FakeUI struct {
35
36
}
37
38
func NewFakeUI() *FakeUI {
39
+ // NOTE: when mocking the UI we would like to have a large
40
+ /// terminal width to start with
41
+ os.Setenv("TEST_TERMINAL_WIDTH", "300")
42
return &FakeUI{}
43
44
0 commit comments