Skip to content

Commit 28577d0

Browse files
chore: update placeholder string
1 parent 2aff58a commit 28577d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/api-resources/files.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe('resource files', () => {
5555
// Mock server tests are disabled
5656
test.skip('upload: only required params', async () => {
5757
const responsePromise = client.files.upload({
58-
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
58+
file: await toFile(Buffer.from('Example data'), 'README.md'),
5959
name: 'File Name',
6060
});
6161
const rawResponse = await responsePromise.asResponse();
@@ -70,7 +70,7 @@ describe('resource files', () => {
7070
// Mock server tests are disabled
7171
test.skip('upload: required and optional params', async () => {
7272
const response = await client.files.upload({
73-
file: await toFile(Buffer.from('# my file contents'), 'README.md'),
73+
file: await toFile(Buffer.from('Example data'), 'README.md'),
7474
name: 'File Name',
7575
});
7676
});

0 commit comments

Comments
 (0)