diff --git a/xunit.runner.wpf/Impl/RemoteTestUtil.cs b/xunit.runner.wpf/Impl/RemoteTestUtil.cs index f1f127f..62c566c 100644 --- a/xunit.runner.wpf/Impl/RemoteTestUtil.cs +++ b/xunit.runner.wpf/Impl/RemoteTestUtil.cs @@ -59,7 +59,7 @@ namespace xunit.runner.wpf.Impl private Task RunCore(string actionName, string assemblyPath, ImmutableArray testCaseDisplayNames, Action callback, CancellationToken cancellationToken) { - var connection = StartWorkerProcess(Constants.ActionRunAll, assemblyPath); + var connection = StartWorkerProcess(actionName, assemblyPath); var queue = CreateRunQueue(connection, testCaseDisplayNames, cancellationToken); var backgroundProducer = new BackgroundProducer(connection, _dispatcher, queue, callback); return backgroundProducer.Task;