diff --git a/.dotnet.azure/sdk/openai/Azure.AI.OpenAI/tests/FineTuningTests.cs b/.dotnet.azure/sdk/openai/Azure.AI.OpenAI/tests/FineTuningTests.cs index 0386520e6..ba6a741a6 100644 --- a/.dotnet.azure/sdk/openai/Azure.AI.OpenAI/tests/FineTuningTests.cs +++ b/.dotnet.azure/sdk/openai/Azure.AI.OpenAI/tests/FineTuningTests.cs @@ -209,7 +209,7 @@ public async Task CreateAndDeleteFineTuning() TrainingFile = uploadedFile.Id }.ToBinaryContent(); - CreateJobOperation operation = await client.CreateJobAsync(requestContent, waitForCompletion: false); + CreateJobOperation operation = await client.CreateJobAsync(requestContent, waitUntilCompleted: false); FineTuningJob job = ValidateAndParse(ClientResult.FromResponse(operation.GetRawResponse())); Assert.That(job.ID, Is.Not.Null.Or.Empty); Assert.That(job.Error, Is.Null);