Skip to content

Commit dde297d

Browse files
committed
Fix build errors
1 parent f6857f4 commit dde297d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/LogicLooper.Test/LogicLooperMetricsTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void RunningLoopers()
1717
var tracker = new LogicLooperTracker();
1818

1919
// Act
20-
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => throw new NotSupportedException());
20+
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => throw new NotSupportedException(), 1, 10);
2121
using var logicLooper1 = new Cysharp.Threading.LogicLooper(TimeSpan.FromMilliseconds(100), 16, TimeProvider.System, tracker);
2222
using var logicLooper2 = new Cysharp.Threading.LogicLooper(TimeSpan.FromMilliseconds(100), 16, TimeProvider.System, tracker);
2323

@@ -40,7 +40,7 @@ public void SharedPoolLoopers()
4040
new AnonymousLogicLooperPoolLooperFactory(x => new Cysharp.Threading.LogicLooper(x,16, TimeProvider.System, tracker)));
4141

4242
// Act
43-
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => pool);
43+
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => pool, 1, 10);
4444

4545
// Assert
4646
collector.RecordObservableInstruments();
@@ -61,7 +61,7 @@ public void SharedPoolRunningActions()
6161
new AnonymousLogicLooperPoolLooperFactory(x => new Cysharp.Threading.LogicLooper(x, 16, TimeProvider.System, tracker)));
6262

6363
// Act
64-
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => pool);
64+
using var metrics = new LogicLooperMetrics(testMeterFactory, TimeProvider.System, tracker, () => pool, 1, 10);
6565
pool.RegisterActionAsync((in LogicLooperActionContext ctx) => true);
6666
pool.RegisterActionAsync((in LogicLooperActionContext ctx) => true);
6767

0 commit comments

Comments
 (0)