Skip to content

Commit

Permalink
(build): run dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
fb-smit committed Nov 20, 2023
1 parent e6ad06f commit ef86348
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void SwaggerUiUsesExampleDesignByDefault()
{
_environment.ApplicationName.Returns("AwesomeApp");
var applicationBuilder = Substitute.For<IApplicationBuilder>();
var configuration = new OpenApiConfiguration ();
var configuration = new OpenApiConfiguration();
var services = new ServiceCollection();
var swaggerOptions = Substitute.For<IOptionsSnapshot<SwaggerOptions>>();
swaggerOptions.Value.Returns(new SwaggerOptions());
Expand All @@ -52,7 +52,7 @@ public void SwaggerUiCanServeWithoutExampleCss()
{
_environment.ApplicationName.Returns("AwesomeApp");
var applicationBuilder = Substitute.For<IApplicationBuilder>();
var configuration = new OpenApiConfiguration ();
var configuration = new OpenApiConfiguration();
var services = new ServiceCollection();
var swaggerOptions = Substitute.For<IOptionsSnapshot<SwaggerOptions>>();
swaggerOptions.Value.Returns(new SwaggerOptions());
Expand All @@ -77,7 +77,7 @@ public void SwashbuckleIsSetupCorrectly()
_environment.ApplicationName.Returns("MyApp");
var services = new ServiceCollection();
services.AddSingleton(Substitute.For<IWebHostEnvironment>());
var configuration = new OpenApiConfiguration ();
var configuration = new OpenApiConfiguration();
var plugin = GetPlugin(configuration);
plugin.ConfigureServices(services);
var sp = services.BuildServiceProvider()!;
Expand Down

0 comments on commit ef86348

Please sign in to comment.