Skip to content
Snippets Groups Projects
Commit 2c4ef1d5 authored by Sebastian's avatar Sebastian
Browse files

new test tab opens without test specification loaded

parent b4d6d7b6
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,6 @@ threadname = True
main-window-height = 791
main-window-width = 612
paned-position-search = 406
paned-position-command-code = 105
paned-position-command-code = 68
paned-position-comment = 462
......@@ -989,6 +989,10 @@ class TestSpecification:
@precon_name.setter
def precon_name(self, value: str):
if value == None:
value = "None"
else:
pass
assert isinstance(value, str)
self._precon_name = value
......@@ -1016,6 +1020,10 @@ class TestSpecification:
@postcon_name.setter
def postcon_name(self, value: str):
if value == None:
value = "None"
else:
pass
assert isinstance(value, str)
self._postcon_name = value
......
......@@ -14,8 +14,8 @@ output-file-path = ${paths:tst}/logs_test_runs/output_files/
[tst-preferences]
show-json-view = True
main-window-height = 1043
main-window-width = 1920
main-window-height = 752
main-window-width = 1386
paned-position = 919
paned-position-codeblockreuse = 520
......
......@@ -196,7 +196,7 @@ class TstAppWindow(Gtk.ApplicationWindow):
def __init__(self, logger=logger, *args, **kwargs):
super().__init__(*args, **kwargs)
self.logger = logger
self.logger.info('Initializing a instance of the class TstAppWindow')
self.logger.info('Initializing an instance of the class TstAppWindow')
self.product_paths = []
# actions
......
......@@ -71,7 +71,7 @@ class Board(Gtk.Box):
"""
def __init__(self, model, app, filename=None, logger=logger):
"""
When a instance is initialized:
When an instance is initialized:
* a data model instance is created
* the toolbar is created
* a instance of a grid is added
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment