File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ describe('resource workbooks', () => {
128128 // Mock server tests are disabled
129129 test . skip ( 'upload: only required params' , async ( ) => {
130130 const responsePromise = client . workbooks . upload ( {
131- file : await toFile ( Buffer . from ( '# my file contents ' ) , 'README.md' ) ,
131+ file : await toFile ( Buffer . from ( 'Example data ' ) , 'README.md' ) ,
132132 } ) ;
133133 const rawResponse = await responsePromise . asResponse ( ) ;
134134 expect ( rawResponse ) . toBeInstanceOf ( Response ) ;
@@ -142,7 +142,7 @@ describe('resource workbooks', () => {
142142 // Mock server tests are disabled
143143 test . skip ( 'upload: required and optional params' , async ( ) => {
144144 const response = await client . workbooks . upload ( {
145- file : await toFile ( Buffer . from ( '# my file contents ' ) , 'README.md' ) ,
145+ file : await toFile ( Buffer . from ( 'Example data ' ) , 'README.md' ) ,
146146 } ) ;
147147 } ) ;
148148
You can’t perform that action at this time.
0 commit comments