Skip to content

Commit 54e9eff

Browse files
authoredJan 28, 2025
Merge pull request #430 from IBM-Cloud/dev
Publish v1.6.1
2 parents 8965968 + 7362edf commit 54e9eff

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎bluemix/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package bluemix
33
import "fmt"
44

55
// Version is the SDK version
6-
var Version = VersionType{Major: 1, Minor: 6, Build: 0}
6+
var Version = VersionType{Major: 1, Minor: 6, Build: 1}
77

88
// VersionType describe version info
99
type VersionType struct {

‎testhelpers/terminal/test_ui.go

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"bytes"
55
"fmt"
66
"io"
7+
"os"
78
"strings"
89

910
term "github.com/IBM-Cloud/ibm-cloud-cli-sdk/bluemix/terminal"
@@ -35,6 +36,9 @@ type FakeUI struct {
3536
}
3637

3738
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")
3842
return &FakeUI{}
3943
}
4044

0 commit comments

Comments
 (0)
Failed to load comments.