______________ TestSynchronization.test_synchronize_error_remote ______________ self = <tests.test_synchronization.TestSynchronization testMethod=test_synchronize_error_remote> @pytest.mark.randombug("NXDRIVE-0", condition=True, mode="STRICT") def test_synchronize_error_remote(self): path = "/" + self.workspace_title + "/test.odt" remote = self.remote_document_client_1 self.engine_1.remote = RemoteTest( pytest.nuxeo_url, self.user_1, "nxdrive-test-administrator-device", pytest.version, password=self.password_1, ) self.engine_1.remote.make_download_raise(HTTPError(status=400, message="Mock")) remote.make_file("/", "test.odt", content=b"Some content.") self.engine_1.start() self.wait_sync(wait_for_async=True, fail_if_timeout=False) self.engine_1.stop() pair = self.engine_1.get_dao().get_state_from_local(path) > assert pair.error_count == 4 E AssertionError: assert 1 == 4