Skip to content

Commit e75e4be

Browse files
authored
fix: show output panel command (#266)
The Show Output Panel requires the name to be UnitTesting: "caption": "UnitTesting: Show Output Panel", "command": "show_panel", "args": {"panel": "output.UnitTesting"}
1 parent 35af003 commit e75e4be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittesting/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def load_stream(self, package, settings):
166166
output = settings["output"]
167167
if not output or output == "<panel>":
168168
output_panel = OutputPanel(
169-
self.window, "exec", file_regex=r'File "([^"]*)", line (\d+)'
169+
self.window, "UnitTesting", file_regex=r'File "([^"]*)", line (\d+)'
170170
)
171171
output_panel.show()
172172
return output_panel

0 commit comments

Comments
 (0)