Skip to content

Commit 2dc912b

Browse files
committed
Fixed name.
1 parent 5b970fb commit 2dc912b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Provider/src/Perf/CommandBenchmark.Execute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace Perf
2222
{
23-
partial class Benchmark
23+
partial class CommandBenchmark
2424
{
2525
[GlobalSetup(Target = nameof(Execute))]
2626
public void ExecuteGlobalSetup()

Provider/src/Perf/CommandBenchmark.Fetch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace Perf
2222
{
23-
partial class Benchmark
23+
partial class CommandBenchmark
2424
{
2525
[GlobalSetup(Target = nameof(Fetch))]
2626
public void FetchGlobalSetup()

Provider/src/Perf/CommandBenchmark.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
namespace Perf
2727
{
2828
[Config(typeof(Config))]
29-
public partial class Benchmark
29+
public partial class CommandBenchmark
3030
{
3131
class Config : ManualConfig
3232
{
3333
public Config()
3434
{
35-
var baseJob = Job.ShortRun
35+
var baseJob = Job.Default
3636
.With(CsProjCoreToolchain.Current.Value)
3737
.With(Platform.X64)
3838
.With(Jit.RyuJit)

0 commit comments

Comments
 (0)