Skip to content

Commit ba9c113

Browse files
authored
Fix build break (dotnet#33256)
1 parent 8d167cc commit ba9c113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Server/test/Circuits/CircuitHostTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public async Task DisposeAsync_MarksJSRuntimeAsDisconnectedBeforeDisposingRender
129129
var serviceScope = new Mock<IServiceScope>();
130130
var remoteRenderer = GetRemoteRenderer();
131131
var circuitHost = TestCircuitHost.Create(
132-
serviceScope: serviceScope.Object,
132+
serviceScope: new AsyncServiceScope(serviceScope.Object),
133133
remoteRenderer: remoteRenderer);
134134

135135
var component = new PerformJSInteropOnDisposeComponent(circuitHost.JSRuntime);

0 commit comments

Comments
 (0)