Skip to content

Commit d4bb8d5

Browse files
fix: lint
1 parent cdd075f commit d4bb8d5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

benchmark/BenchmarkRunner/Benchmarks/SqliteReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class SqliteReadBenchmark
1818
private QuerySql _sqlcImpl = null!;
1919
private const int CustomerCount = 250;
2020
private const int QueriesToRun = 500;
21-
21+
2222
[Params(50, 500)]
2323
public int Limit { get; set; }
2424

benchmark/BenchmarkRunner/MysqlRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using System.Diagnostics;
21
using BenchmarkDotNet.Configs;
32
using BenchmarkRunner.Benchmarks;
43
using BenchmarkRunner.Utils;
54
using Microsoft.Extensions.Logging;
5+
using System.Diagnostics;
66

77
public class MysqlRunner(string connectionString, ILogger<MysqlRunner> logger)
88
{

benchmark/BenchmarkRunner/PostgresqlRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using System.Diagnostics;
21
using BenchmarkDotNet.Configs;
32
using BenchmarkRunner.Benchmarks;
43
using BenchmarkRunner.Utils;
54
using Microsoft.Extensions.Logging;
5+
using System.Diagnostics;
66

77
public class PostgresqlRunner(string connectionString, ILogger<PostgresqlRunner> logger)
88
{

benchmark/BenchmarkRunner/SqliteRunner.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using System.Diagnostics;
21
using BenchmarkDotNet.Configs;
32
using BenchmarkRunner.Benchmarks;
43
using BenchmarkRunner.Utils;
54
using Microsoft.Extensions.Logging;
5+
using System.Diagnostics;
66

77
public class SqliteRunner(string connectionString, ILogger<SqliteRunner> logger)
88
{
@@ -26,7 +26,7 @@ public Task RunAsync()
2626
stopwatch.Restart();
2727
BenchmarkDotNet.Running.BenchmarkRunner.Run<SqliteWriteBenchmark>(config);
2828
stopwatch.Stop();
29-
var writeTime = stopwatch.Elapsed;;
29+
var writeTime = stopwatch.Elapsed; ;
3030

3131
_logger.LogInformation("SQLite Reads benchmarks completed in {ElapsedTime}", Helpers.FormatElapsedTime(readTime));
3232
_logger.LogInformation("SQLite Writes benchmarks completed in {ElapsedTime}", Helpers.FormatElapsedTime(writeTime))

0 commit comments

Comments
 (0)