Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #685 was successful

Job: Onepanel was successful

revoke space support[1oz 1op 1oc-RESt-web GUi-RESt]: Test case result

The below summarizes the result of the test " revoke space support[1oz 1op 1oc-RESt-web GUi-RESt]" in build 685 of Onedata Products - mixed acceptance pkg - Chrome onepanel tests.
Description
revoke space support[1oz 1op 1oc-RESt-web GUi-RESt]
Test class
mixed.scenarios.test_onepanel_basic
Method
test_revoke_space_support[1oz_1op_1oc-REST-web GUI-REST]
Jira Issue
Duration
30 secs
Status
Failed (Existing Failure)

Error Log

TypeError: __init__() got an unexpected keyword argument 'mount_in_root'
request = <FixtureRequest for <Function 'test_revoke_space_support[1oz_1op_1oc-REST-web GUI-REST]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.6/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
tests/mixed/steps/onepanel_basic.py:341: in support_space_in_op_panel
    tmp_memory, config)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

user = 'onepanel', provider_host = 'oneprovider-1'
hosts = {'oneclient-1': {'container-id': 'eddf871ea8bc48806aa79c44555c4e9d50e3dde956b29d4d300d3696a50b2a3d', 'ip': '172.17.0.5...3315cb8c097433', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.11', 'name': 'dev-onezone', ...}}
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f1519f56128>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f1519efe320>, 'user1': <tests.utils.user_utils.User object at 0x7f1519d58630>}
tmp_memory = defaultdict(<class 'dict'>, {'onepanel': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {'token': 'MDAzM2xvY2F0...4N2NoOWZiMQowMDJmc2lnbmF00dXJlIPSBItm11s2ll00wHNM96Gtag4fQY94LT4ENMt38XiOJbCg'}, 'oz': {}, 'window': {'modal': None}}})
config = 'storage: posix\nsize: 1000000'

    def support_space_in_op_panel_using_rest(user, provider_host, hosts, users,
                                             tmp_memory, config):
        user_client = login_to_panel(user, users[user].password,
                                     hosts[provider_host]['hostname'])
    
        provider_api = OneproviderApi(user_client)
    
        options = yaml.load(config)
    
        storage_import_options = options.get('storage import', None)
        if storage_import_options:
            strategy = '_'.join(storage_import_options['strategy'].lower().
                                split())
            max_depth = storage_import_options.get('max depth', None)
            storage_import = StorageImportDetails(strategy, max_depth)
        else:
            storage_import = None
    
        storages = provider_api.get_storages().ids
        for storage_id in storages:
            storage = provider_api.get_storage_details(storage_id)
            if storage.name == options['storage']:
                space_support_rq = SpaceSupportRequest(
                    token=tmp_memory[user]['mailbox']['token'],
                    size=options['size'],
                    storage_id=storage_id,
                    storage_import=storage_import,
>                   mount_in_root=options.get('mount in root', False))
E               TypeError: __init__() got an unexpected keyword argument 'mount_in_root'

tests/mixed/steps/rest/onepanel/spaces.py:73: TypeError