Skip to content

Commit

Permalink
chore(ecosystem-tests): fix typo in deno test (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Jan 13, 2024
1 parent adbf4b0 commit ffad11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecosystem-tests/deno/main_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Deno.test(async function toFileHandlesArrayBuffer() {
});
Deno.test(async function toFileHandlesDataView() {
const result = await client.files.create({
file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.json'),
file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'),
purpose: 'fine-tune',
});
assertEquals(result.filename, 'finetune.jsonl');
Expand Down

0 comments on commit ffad11b

Please sign in to comment.