Skip to content

Commit 0511b37

Browse files
committed
format
1 parent 174b904 commit 0511b37

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

tests-integration/Elastic.Assembler.IntegrationTests/AssembleFixture.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
namespace Elastic.Assembler.IntegrationTests;
1616

17-
1817
public class DocumentationFixture : IAsyncLifetime
1918
{
2019
public DistributedApplication DistributedApplication { get; private set; } = null!;
@@ -49,7 +48,6 @@ public async ValueTask DisposeAsync()
4948
}
5049
}
5150

52-
5351
public class ServeStaticTests(DocumentationFixture fixture, ITestOutputHelper output) : IAsyncLifetime
5452
{
5553
[Fact]
@@ -68,7 +66,7 @@ public ValueTask DisposeAsync()
6866
{
6967
GC.SuppressFinalize(this);
7068
if (TestContext.Current.TestState?.Result is TestResult.Passed)
71-
return default;
69+
return default;
7270
foreach (var resource in fixture.InMemoryLogger.RecordedLogs)
7371
output.WriteLine(resource.Message);
7472
return default;
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
88

9-
<ItemGroup>
10-
<ProjectReference Include="..\..\src\Elastic.Documentation\Elastic.Documentation.csproj" />
11-
<ProjectReference Include="..\..\src\tooling\docs-assembler\docs-assembler.csproj" />
12-
<ProjectReference Include="..\..\src\tooling\docs-builder\docs-builder.csproj" />
13-
<ProjectReference Include="..\Elastic.Documentation.Aspire\Elastic.Documentation.Aspire.csproj" />
14-
</ItemGroup>
9+
<ItemGroup>
10+
<ProjectReference Include="..\..\src\Elastic.Documentation\Elastic.Documentation.csproj"/>
11+
<ProjectReference Include="..\..\src\tooling\docs-assembler\docs-assembler.csproj"/>
12+
<ProjectReference Include="..\..\src\tooling\docs-builder\docs-builder.csproj"/>
13+
<ProjectReference Include="..\Elastic.Documentation.Aspire\Elastic.Documentation.Aspire.csproj"/>
14+
</ItemGroup>
1515

16-
<ItemGroup>
17-
<PackageReference Include="Aspire.Hosting.Testing" />
18-
<PackageReference Include="InMemoryLogger" />
19-
</ItemGroup>
16+
<ItemGroup>
17+
<PackageReference Include="Aspire.Hosting.Testing"/>
18+
<PackageReference Include="InMemoryLogger"/>
19+
</ItemGroup>
2020

2121
</Project>

0 commit comments

Comments
 (0)