Skip to content

Commit

Permalink
fixed rename
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Nov 17, 2023
1 parent 36a1b75 commit 478ba9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenAI-DotNet-Tests/TestFixture_11_Assistants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public async Task Test_04_DeleteAssistantFile()
foreach (var file in filesList.Items)
{
Assert.IsNotNull(file);
var isRemoved = await OpenAIClient.AssistantsEndpoint.DeleteAssistantFileAsync(file);
var isRemoved = await OpenAIClient.AssistantsEndpoint.RemoveAssistantFileAsync(file);
Assert.IsTrue(isRemoved);
var isDeleted = await OpenAIClient.FilesEndpoint.DeleteFileAsync(file);
Assert.IsTrue(isDeleted);
Expand Down

0 comments on commit 478ba9a

Please sign in to comment.