Skip to content

Commit

Permalink
Improve error message when timeout on VS start
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Aug 29, 2022
1 parent b3f43e1 commit 165d831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Xunit.Vsix/VsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ bool EnsureStarted(VsixTestCase testCase, IMessageBus messageBus)
s_tracer.TraceEvent(TraceEventType.Error, 0, Strings.VsClient.FailedToStart(_visualStudioVersion, _rootSuffix));
messageBus.QueueMessage(new TestFailed(new XunitTest(testCase, testCase.DisplayName), 0,
Strings.VsClient.FailedToStart(_visualStudioVersion, _rootSuffix),
new TimeoutException()));
new TimeoutException("Failed to start Visual Studio " + _visualStudioVersion + " " + _rootSuffix)));

return false;
}
Expand Down

0 comments on commit 165d831

Please sign in to comment.