##// END OF EJS Templates
tests: cast division result to int...
Gregory Szorc -
r41897:38a82e03 default draft
parent child Browse files
Show More
@@ -292,7 +292,7 b' class datapacktestsbase(object):'
292
292
293 class testdatapackstore(datapack.datapackstore):
293 class testdatapackstore(datapack.datapackstore):
294 # Ensures that we are not keeping everything in the cache.
294 # Ensures that we are not keeping everything in the cache.
295 DEFAULTCACHESIZE = numpacks / 2
295 DEFAULTCACHESIZE = int(numpacks / 2)
296
296
297 store = testdatapackstore(uimod.ui(), packdir)
297 store = testdatapackstore(uimod.ui(), packdir)
298
298
General Comments 0
You need to be logged in to leave comments. Login now