hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 06 Mar 2017 23:19:57 -0800
changeset 31184 842489d18118
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
tests: fix test-update-branches to remove non-conflicting file I was clearly very sloppy when I wrote the test case for experimental.updatecheck=noconflict. The test case that checks that one can move between commits with a removed file was deleting a file that was modified between the source and target commits, which resulted in a "change/delete" conflict. Since that is a conlict, the update correctly failed. Let's fix the test by removing a file that is not modified between the two commits.

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)