Skip to content

Commit

Permalink
[qacode] some suite vars fixes ControlTable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
netzulo committed Apr 19, 2019
1 parent 4c9e689 commit 4b5d6ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/001_functionals/suite_008_controltable.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def setup_login_to_data(self):
def test_controltable_instance(self, on_instance_search,
strict_rules, auto_reload, ctl_name):
"""Testcase: test_controltable_instance"""
cfg = getattr(self, ctl_name)
cfg = getattr(self, ctl_name).copy()
cfg.update({
"instance": "ControlTable",
"on_instance_search": on_instance_search,
Expand Down Expand Up @@ -148,7 +148,7 @@ def test_controltable_instance(self, on_instance_search,
@pytest.mark.parametrize("ctl_name", ['tbl_ok', 'tbl_html5_ok'])
def test_controltable_instance_raises(self, strict_rules, ctl_name):
"""Testcase: test_controltable_instance_raises"""
cfg = getattr(self, ctl_name)
cfg = getattr(self, ctl_name).copy()
cfg.update({
"instance": "ControlTable",
"strict_rules": strict_rules,
Expand Down

0 comments on commit 4b5d6ba

Please sign in to comment.