Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 048ec94

Browse files
authoredJan 12, 2024
chore(ecosystem-tests): fix typo in deno test (#628)
1 parent ae412a5 commit 048ec94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ecosystem-tests/deno/main_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Deno.test(async function toFileHandlesArrayBuffer() {
123123
});
124124
Deno.test(async function toFileHandlesDataView() {
125125
const result = await client.files.create({
126-
file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.json'),
126+
file: await toFile(new DataView(new TextEncoder().encode(fineTune).buffer), 'finetune.jsonl'),
127127
purpose: 'fine-tune',
128128
});
129129
assertEquals(result.filename, 'finetune.jsonl');

0 commit comments

Comments
 (0)
Please sign in to comment.