Skip to content

Commit 524332f

Browse files
fix: lint
1 parent 575d44a commit 524332f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

benchmark/BenchmarkRunner/Benchmarks/BaseWriteBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public abstract class BaseWriteBenchmark
77
{
88
public const int OrderIdsCountForSetup = 1000;
99
public const int ProductIdsCountForSetup = 1000;
10-
10+
1111
public static DatabaseSeedConfig GetSeedConfig() => new(
1212
CustomerCount: 500,
1313
ProductsPerCategory: 150,

benchmark/BenchmarkRunner/Benchmarks/MysqlWriteBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static Func<Task> GetSeedMethod()
6767

6868
[GlobalSetup]
6969
public async Task GlobalSetup()
70-
{
70+
{
7171
var orderIds = await _sqlcImpl.GetOrderIdsAsync(new QuerySql.GetOrderIdsArgs(Limit: OrderIdsCountForSetup));
7272
var productIds = await _sqlcImpl.GetProductIdsAsync(new QuerySql.GetProductIdsArgs(Limit: ProductIdsCountForSetup));
7373
_sqlcTestOrderItems = GetSqlcTestOrderItemsAsync(orderIds, productIds);

0 commit comments

Comments
 (0)