Skip to content

Commit e37dbfd

Browse files
committed
format
1 parent 54c86f6 commit e37dbfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ namespace Elastic.Assembler.IntegrationTests;
1818

1919
public class DocumentationFixture : IAsyncLifetime
2020
{
21-
private bool _failedBootstrap;
2221
public DistributedApplication DistributedApplication { get; private set; } = null!;
2322

2423
public InMemoryLogger InMemoryLogger { get; private set; } = null!;
@@ -69,7 +68,8 @@ private async ValueTask ValidateExitCode(string resourceName)
6968
{
7069
await DistributedApplication.StopAsync();
7170
await DistributedApplication.DisposeAsync();
72-
throw new Exception($"Exit code should be 0 for {resourceName}: {string.Join(Environment.NewLine, InMemoryLogger.RecordedLogs.Reverse().Take(30).Reverse())}");
71+
throw new Exception(
72+
$"Exit code should be 0 for {resourceName}: {string.Join(Environment.NewLine, InMemoryLogger.RecordedLogs.Reverse().Take(30).Reverse())}");
7373
}
7474
}
7575

0 commit comments

Comments
 (0)