Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public ChatHistoryTests(ITestOutputHelper output)
{
this._logger = new XunitLogger<Kernel>(output);
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);
Comment thread
markwallace-microsoft marked this conversation as resolved.

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public sealed class OpenAIAudioToTextTests : IDisposable
public OpenAIAudioToTextTests(ITestOutputHelper output)
{
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public OpenAICompletionTests(ITestOutputHelper output)
{
this._logger = new XunitLogger<Kernel>(output);
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public sealed class OpenAITextEmbeddingTests : IDisposable
public OpenAITextEmbeddingTests(ITestOutputHelper output)
{
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public sealed class OpenAITextToAudioTests : IDisposable
public OpenAITextToAudioTests(ITestOutputHelper output)
{
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public FunctionCallingStepwisePlannerTests(ITestOutputHelper output)
{
this._logger = new XunitLogger<Kernel>(output);
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
1 change: 0 additions & 1 deletion dotnet/src/IntegrationTests/PromptTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public PromptTests(ITestOutputHelper output)
{
this._logger = new XunitLogger<Kernel>(output);
this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
this._configuration = new ConfigurationBuilder()
Expand Down
1 change: 0 additions & 1 deletion dotnet/src/IntegrationTests/WebPlugin/WebPluginTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public WebPluginTests(ITestOutputHelper output)
this._output = output;

this._testOutputHelper = new RedirectOutput(output);
Console.SetOut(this._testOutputHelper);

// Load configuration
IConfigurationRoot configuration = new ConfigurationBuilder()
Expand Down