##// END OF EJS Templates
run-tests: align call argument on string...
marmoute -
r53435:8adfaa5a default
parent child Browse files
Show More
@@ -4121,7 +4121,7 class TestRunner:
4121 def _get_hg_module_policy(self):
4121 def _get_hg_module_policy(self):
4122 """return the module policy as seen by the "hg" binary"""
4122 """return the module policy as seen by the "hg" binary"""
4123 cmd = [
4123 cmd = [
4124 self._real_hg,
4124 _bytes2sys(self._real_hg),
4125 "debuginstall",
4125 "debuginstall",
4126 "--template",
4126 "--template",
4127 "{hgmodulepolicy}",
4127 "{hgmodulepolicy}",
@@ -4146,7 +4146,7 class TestRunner:
4146 def _get_hg_bin_path(self):
4146 def _get_hg_bin_path(self):
4147 """return the path to the mercurial lib according to the "hg" binary"""
4147 """return the path to the mercurial lib according to the "hg" binary"""
4148 cmd = [
4148 cmd = [
4149 self._real_hg,
4149 _bytes2sys(self._real_hg),
4150 "debuginstall",
4150 "debuginstall",
4151 "--template",
4151 "--template",
4152 "{hgmodules}",
4152 "{hgmodules}",
General Comments 0
You need to be logged in to leave comments. Login now