cstore: fix python test imports

This commit is contained in:
Durham Goode 2018-01-09 15:23:52 -08:00
parent b805623673
commit e05e6e6cc5
2 changed files with 4 additions and 4 deletions

View File

@ -17,11 +17,11 @@ sys.path[0:0] = [os.path.join(os.path.dirname(__file__), '..')]
import pythonpath
pythonpath.setcstorepath()
from cstore import (
from hgext.extlib.cstore import (
datapackstore,
)
from remotefilelog.datapack import (
from hgext.remotefilelog.datapack import (
fastdatapack,
mutabledatapack,
)

View File

@ -16,12 +16,12 @@ sys.path[0:0] = [os.path.join(os.path.dirname(__file__), '..')]
import pythonpath
pythonpath.setcstorepath()
from cstore import (
from hgext.extlib.cstore import (
datapackstore,
uniondatapackstore,
)
from remotefilelog.datapack import (
from hgext.remotefilelog.datapack import (
datapack,
mutabledatapack,
)