Skip to content

Commit

Permalink
Merge pull request #262 from BroMarduk/dev-exception-warnings
Browse files Browse the repository at this point in the history
Fixes for Exception Warnings
  • Loading branch information
kayhantolga authored May 18, 2023
2 parents f3df394 + 9ae95f8 commit 891b86f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenAI.Playground/TestHelpers/CompletionTestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static async Task RunSimpleCompletionStreamTestWithCancellationToken(IOpe
}
}
}
catch (OperationCanceledException e)
catch (OperationCanceledException)
{
ConsoleExtensions.WriteLine("Operation Cancelled", ConsoleColor.Green);
}
Expand All @@ -223,4 +223,4 @@ public static async Task RunSimpleCompletionStreamTestWithCancellationToken(IOpe
throw;
}
}
}
}

0 comments on commit 891b86f

Please sign in to comment.