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

Build: #4 failed

Job: File content was successful

user appends text to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-RESt-oneclient1-RESt]: Test case result

The below summarizes the result of the test " user appends text to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-RESt-oneclient1-RESt]" in build 4 of Onedata Products - mixed acceptance pkg - release-22.02.0-alpha1 - Chrome file content tests.
Description
user appends text to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-RESt-oneclient1-RESt]
Test class
mixed.scenarios.test_file_content
Method
test_user_appends_text_to_file_using_client2_and_using_client1_sees_that_files_content_has_changed[1oz_1op_1oc-REST-oneclient1-REST]
Duration
19 secs
Status
Failed (New Failure)

Error Log

AssertionError: Expected file named space1/file1 content to be TEST TEXT ONEDATA APPENDED DATA but found
request = <FixtureRequest for <Function 'test_user_appends_text_to_file_using_client2_and_using_client1_sees_that_files_content_has_changed[1oz_1op_1oc-REST-oneclient1-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/utils/bdd_utils.py:77: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/mixed/steps/data_basic.py:323: in read_from_file_in_op
    host, hosts)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

path = 'space1/file1', text = 'TEST TEXT ONEDATA APPENDED DATA', user = 'user1'
users = {'admin': <tests.utils.user_utils.AdminUser object at 0x7f177082a5c0>, 'onepanel': <tests.utils.user_utils.AdminUser object at 0x7f177082a160>, 'user1': <tests.utils.user_utils.User object at 0x7f17708e2b70>}
provider = 'oneprovider-1'
hosts = {'oneclient-1': {'container-id': '28d340b2900153a5b37ebc9e3d523e39ecf2188e6d358fe9d869a80f160b0946', 'ip': '172.17.0.8...899104f5b51d2db', 'hostname': 'dev-onezone.default.svc.cluster.local', 'ip': '172.17.0.5', 'name': 'dev-onezone', ...}}

    def assert_file_content_in_op_rest(path, text, user, users, provider, hosts):
        file_content = _read_file(path, user, users, provider, hosts)
        assert_msg = ('Expected file named {} content to be '
                      '{} but found {}'.format(path, text, file_content))
>       assert file_content == text, assert_msg
E       AssertionError: Expected file named space1/file1 content to be TEST TEXT ONEDATA APPENDED DATA but found

tests/mixed/steps/rest/oneprovider/data.py:54: AssertionError