From ae5e46d7729f892aafbdadf72eb5dc5bcd9223da Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Mon, 12 Oct 2015 06:28:42 -0700 Subject: [PATCH] Fix issue where running a specific test was treated as running all of them --- xunit.runner.wpf/Impl/RemoteTestUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;