Skip to content

Commit 2d49d01

Browse files
author
allan
committed
fix: enable compression in GetCompress function by setting the third parameter to true
1 parent eeafa2a commit 2d49d01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/a_main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func GetCompress() (compress.ICompress, error) {
3232
//clientId := os.Getenv("CLIENT_ID")
3333
customerName := os.Getenv("CUSTOMER_NAME")
3434
//
35-
c, err := compress.NewCompress(customerName, apiKey, false)
35+
c, err := compress.NewCompress(customerName, apiKey, true)
3636
if err != nil {
3737
return nil, err
3838
}

0 commit comments

Comments
 (0)