tests/simplestorerepo.py
changeset 37441 a3202fa83aff
parent 37436 9d4f09bfe3ec
child 37442 0596d27457c6
--- a/tests/simplestorerepo.py	Thu Apr 05 15:09:41 2018 -0700
+++ b/tests/simplestorerepo.py	Thu Apr 05 15:18:23 2018 -0700
@@ -24,6 +24,9 @@
 from mercurial.thirdparty import (
     cbor,
 )
+from mercurial.thirdparty.zope import (
+    interface as zi,
+)
 from mercurial import (
     ancestor,
     bundlerepo,
@@ -33,6 +36,7 @@
     localrepo,
     mdiff,
     pycompat,
+    repository,
     revlog,
     store,
     verify,
@@ -57,6 +61,7 @@
     if not isinstance(rev, int):
         raise ValueError('expected int')
 
+@zi.implementer(repository.ifilestorage)
 class filestorage(object):
     """Implements storage for a tracked path.