Skip to content

Commit 981c9a9

Browse files
committed
Remove print statement
1 parent ee82607 commit 981c9a9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

egnyte/auth_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ func init() {
2626
// we unmarshal our byteArray which contains our
2727
// jsonFile's content into 'users' which we defined above
2828
json.Unmarshal(byteValue, &Config)
29-
fmt.Println(Config)
3029
/* load test data */
3130
Config["RootPath"] = "/Shared/test/"
3231

@@ -36,7 +35,6 @@ func init() {
3635
func TestGetAccessToken(t *testing.T) {
3736
if _, ok := Config["accessToken"]; ok {
3837
resp, err := GetAccessToken(context.Background(), Config)
39-
fmt.Println(resp)
4038
if err != nil {
4139
t.Errorf("%s", err)
4240
}

egnyte/filesystem_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var accessToken string
1414

1515
// Test Create folder
1616
func TestCreateFolder(t *testing.T) {
17-
fmt.Println(Config)
17+
1818
client, err := NewClient(context.Background(), Config["domain"], Config["accessToken"], http.DefaultClient)
1919
if err != nil {
2020
t.Errorf("%s", err)

0 commit comments

Comments
 (0)