From 31febd989f276d5dd2d4e762868b23461c3deb4d Mon Sep 17 00:00:00 2001 From: SennG Date: Sun, 14 Jul 2024 13:09:04 +0200 Subject: [PATCH] #207 fix bad rename --- .../ToFile/ToFileCommandTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/AsyncAPI.Saunter.Generator.Cli.Tests/ToFile/ToFileCommandTests.cs b/test/AsyncAPI.Saunter.Generator.Cli.Tests/ToFile/ToFileCommandTests.cs index 0fd5e45..44e3c1f 100644 --- a/test/AsyncAPI.Saunter.Generator.Cli.Tests/ToFile/ToFileCommandTests.cs +++ b/test/AsyncAPI.Saunter.Generator.Cli.Tests/ToFile/ToFileCommandTests.cs @@ -9,23 +9,23 @@ namespace AsyncAPI.Saunter.Generator.Cli.Tests.ToFile; public class ToFileCommandTests { - private readonly FromSpecCommand _command; + private readonly ToFileCommand _command; private readonly IEnvironmentBuilder _environment; private readonly IServiceProviderBuilder _builder; private readonly IAsyncApiDocumentExtractor _docExtractor; private readonly IFileWriter _fileWriter; - private readonly ILogger _logger; + private readonly ILogger _logger; private readonly ITestOutputHelper _output; public ToFileCommandTests(ITestOutputHelper output) { this._output = output; - this._logger = Substitute.For>(); + this._logger = Substitute.For>(); this._environment = Substitute.For(); this._builder = Substitute.For(); this._docExtractor = Substitute.For(); this._fileWriter = Substitute.For(); - this._command = new FromSpecCommand(this._logger, _environment, _builder, _docExtractor, _fileWriter); + this._command = new ToFileCommand(this._logger, _environment, _builder, _docExtractor, _fileWriter); } [Fact]