From 93f108e47f7e700c29e6b75b443e30967fb61c9a Mon Sep 17 00:00:00 2001 From: Gerard Roche Date: Thu, 2 May 2024 05:04:51 +0100 Subject: [PATCH] fix: show output panel command The Show Output Panel requires the name to be UnitTesting: "caption": "UnitTesting: Show Output Panel", "command": "show_panel", "args": {"panel": "output.UnitTesting"} --- unittesting/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittesting/base.py b/unittesting/base.py index 39083f88..689e7c64 100644 --- a/unittesting/base.py +++ b/unittesting/base.py @@ -166,7 +166,7 @@ def load_stream(self, package, settings): output = settings["output"] if not output or output == "": output_panel = OutputPanel( - self.window, "exec", file_regex=r'File "([^"]*)", line (\d+)' + self.window, "UnitTesting", file_regex=r'File "([^"]*)", line (\d+)' ) output_panel.show() return output_panel