Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Dec 2, 2024
1 parent 1165842 commit 8df2324
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/Elastic.Apm.Tests.Utilities/XUnit/DockerAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static DockerUtils()
{
try
{
var result = Proc.Start(new StartArguments("docker", "--version") { Timeout = TimeSpan.FromSeconds(30)});
var result = Proc.Start(new StartArguments("docker", "--version") { Timeout = TimeSpan.FromSeconds(30) });
HasDockerInstalled = result.ExitCode == 0;
}
catch (Exception)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using Elastic.Apm.Helpers;
using Xunit;
// Licensed to Elasticsearch B.V under one or more agreements.
Expand All @@ -12,4 +12,4 @@ internal static class LazyContextualInitTestsHelpers
{ "IfNotInited?.Init ?? false", (lazyCtxInit, initAction) => lazyCtxInit.IfNotInited?.Init(initAction) ?? false },
{ "Init", (lazyCtxInit, initAction) => lazyCtxInit.Init(initAction) }
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class AspNetCoreTests
/// <param name="framework"></param>
[Theory]
[InlineData("net8.0")]
public async void AspNetCoreTest(string framework)
public async System.Threading.Tasks.Task AspNetCoreTest(string framework)
{
var apmLogger = new InMemoryBlockingLogger(Logging.LogLevel.Error);
var apmServer = new MockApmServer(apmLogger, nameof(AspNetCoreTests));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private bool TryPublish()
var startArgs = new StartArguments("dotnet", args)
{
WorkingDirectory = workingDirectory,
Timeout= TimeSpan.FromSeconds(30)
Timeout = TimeSpan.FromSeconds(30)
};

var publishResult = Proc.Start(startArgs);
Expand Down

0 comments on commit 8df2324

Please sign in to comment.