@@ -45,7 +45,7 @@ describe('sendRequest', () => {
45
45
'https://example.ibm.com/v1/environments/environment-id/configurations/configuration-id'
46
46
) ;
47
47
expect ( axios . mock . calls [ 0 ] [ 0 ] . headers ) . toEqual ( {
48
- 'Accept-Encoding' : 'gzip' ,
48
+ // 'Accept-Encoding': 'gzip',
49
49
'test-header' : 'test-header-value' ,
50
50
} ) ;
51
51
expect ( axios . mock . calls [ 0 ] [ 0 ] . httpsAgent . options . rejectUnauthorized ) . toEqual (
@@ -134,7 +134,7 @@ describe('sendRequest', () => {
134
134
'https://example.ibm.com/v1/environments/environment-id/configurations/configuration-id'
135
135
) ;
136
136
expect ( axios . mock . calls [ 0 ] [ 0 ] . headers ) . toEqual ( {
137
- 'Accept-Encoding' : 'gzip' ,
137
+ // 'Accept-Encoding': 'gzip',
138
138
'test-header' : 'override-header-value' ,
139
139
'add-header' : 'add-header-value' ,
140
140
} ) ;
@@ -207,7 +207,7 @@ describe('sendRequest', () => {
207
207
'https://example.ibm.com/v1/environments/environment-id/configurations/configuration-id'
208
208
) ;
209
209
expect ( axios . mock . calls [ 0 ] [ 0 ] . headers ) . toMatchObject ( {
210
- 'Accept-Encoding' : 'gzip' ,
210
+ // 'Accept-Encoding': 'gzip',
211
211
'test-header' : 'override-header-value' ,
212
212
'add-header' : 'add-header-value' ,
213
213
} ) ;
0 commit comments