Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.loader.mercurial.tests.test_from_disk::test_load_new_extid_should_be_eventful
Failed

TEST RESULT

Run At
Sep 6 2021, 1:30 PM
Details
swh_storage = <swh.storage.proxies.filter.FilteringProxyStorage object at 0x7f4cffbf1748> datadir = '/var/lib/jenkins/workspace/DLDHG/tests-on-diff/.tox/py3/lib/python3.7/site-packages/swh/loader/mercurial/tests/data' tmp_path = PosixPath('/tmp/pytest-of-jenkins/pytest-0/test_load_new_extid_should_be_0') def test_load_new_extid_should_be_eventful(swh_storage, datadir, tmp_path): """Changing the extid version should make loaders ignore existing extids, and load the repo again.""" archive_name = "hello" archive_path = os.path.join(datadir, f"{archive_name}.tgz") repo_url = prepare_repository_from_archive(archive_path, archive_name, tmp_path) repo_path = repo_url.replace("file://", "") with unittest.mock.patch("swh.loader.mercurial.from_disk.EXTID_VERSION", 0): loader = HgLoaderFromDisk(swh_storage, repo_path) > assert loader.load() == {"status": "eventful"} E AssertionError: assert {'status': 'uneventful'} == {'status': 'eventful'} E Differing items: E {'status': 'uneventful'} != {'status': 'eventful'} E Full diff: E - {'status': 'eventful'} E + {'status': 'uneventful'} E ? ++ .tox/py3/lib/python3.7/site-packages/swh/loader/mercurial/tests/test_from_disk.py:659: AssertionError