GUI acceptance tests using environment deployed from packages.

Build: #1123 failed

Job: Multiprovider basic failed

user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]: Test case result

The below summarizes the result of the test " user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]" in build 1,123 of Onedata Products - gui acceptance pkg - Chrome multiprovider basic tests.
Description
user uploads file sees its size writes to it using cdmi and sees that size has grown[1oz 2op deployed]
Test class
gui.scenarios.test_multiprovider_basic
Method
test_user_uploads_file_sees_its_size_writes_to_it_using_cdmi_and_sees_that_size_has_grown[1oz_2op_deployed]
Duration
4 mins
Status
Failed (Existing Failure)

Error Log

AssertionError: displayed size 20 B for 20B-0.txt does not match expected 24 B
request = <FixtureRequest for <Function 'test_user_uploads_file_sees_its_size_writes_to_it_using_cdmi_and_sees_that_size_has_grown[1oz_2op_deployed]'>>

    @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:76: in wrapper
    return fun(*ba.args, **ba.kwargs)
<decorator-gen-624>:2: in assert_item_in_file_browser_is_of_size
    ???
tests/utils/utils.py:80: in wrapper
    return fun(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

browser_id = 'browser', item_name = '20B-0.txt', size = '24 B'
tmp_memory = defaultdict(<class 'dict'>, {'browser': {'shares': {}, 'spaces': {}, 'groups': {}, 'mailbox': {}, 'oz': {}, 'window': ...a-e8cb8d86f289")>}, 'file_browser': <tests.gui.utils.oneprovider.file_browser._FileBrowser object at 0x7f2bfe0b59b0>}})

    @wt(parsers.parse('user of {browser_id} sees that item named "{item_name}" '
                      'is of {size} size in file browser'))
    @repeat_failed(timeout=WAIT_BACKEND)
    def assert_item_in_file_browser_is_of_size(browser_id, item_name, size,
                                               tmp_memory):
        browser = tmp_memory[browser_id]['file_browser']
        item_size = browser.data[item_name].size
        err_msg = 'displayed size {} for {} does not match expected {}'
>       assert size == item_size, err_msg.format(item_size, item_name, size)
E       AssertionError: displayed size 20 B for 20B-0.txt does not match expected 24 B

tests/gui/steps/oneprovider/file_browser.py:154: AssertionError