config test: the loop should return 0

Returning anything else makes the loop stop, which stops us from
getting to 'core.bare' which the test is looking for.
This commit is contained in:
Carlos Martín Nieto 2012-08-06 17:54:26 +02:00
parent 0821e7bf00
commit 578054b97b

@ -38,7 +38,7 @@ config_filename = "test_config"
def foreach_test_wrapper(key, name, lst):
lst[key] = name
return 1
return 0
class ConfigTest(utils.RepoTestCase):