Skip to content

Commit

Permalink
Call debugger interop functions from UI thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
zooba committed Aug 17, 2018
1 parent c015aca commit 877db38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/Tests/DebuggerUITests/DebugProjectUITests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ public void LaunchWithErrorsDontRun(PythonVisualStudioApp app, bool useVsCodeDeb
var items = app.WaitForErrorListItems(7);

var debug3 = (Debugger3)app.Dte.Debugger;
ThreadPool.QueueUserWorkItem(x => debug3.Go(true));
debug3.Go(true);

var dialog = new PythonLaunchWithErrorsDialog(app.WaitForDialog());
dialog.No();
Expand Down

0 comments on commit 877db38

Please sign in to comment.