##// END OF EJS Templates
tests: call rawsize() directly...
Gregory Szorc -
r37463:cc4b5699 default
parent child Browse files
Show More
@@ -630,7 +630,7 b' enabled adds the lfs requirement'
630 > fl = repo.file(name)
630 > fl = repo.file(name)
631 > if len(fl) == 0:
631 > if len(fl) == 0:
632 > continue
632 > continue
633 > sizes = [revlog.revlog.rawsize(fl, i) for i in fl]
633 > sizes = [fl.rawsize(i) for i in fl]
634 > texts = [fl.revision(i, raw=True) for i in fl]
634 > texts = [fl.revision(i, raw=True) for i in fl]
635 > flags = [int(fl.flags(i)) for i in fl]
635 > flags = [int(fl.flags(i)) for i in fl]
636 > hashes = [hash(t) for t in texts]
636 > hashes = [hash(t) for t in texts]
General Comments 0
You need to be logged in to leave comments. Login now