diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-12-24 04:49:54 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-12-24 04:49:54 -0800 |
commit | 2bd8b0f49973a10ad4328b7538ea27e037c5dec5 (patch) | |
tree | bed8d19e098d89e0effbea7bb0712d2d6f81e85f /gitosis/test | |
parent | Use an already existing config file is passed to gitosis-init. (diff) | |
download | gitosis-dakkar-2bd8b0f49973a10ad4328b7538ea27e037c5dec5.tar.gz gitosis-dakkar-2bd8b0f49973a10ad4328b7538ea27e037c5dec5.tar.bz2 gitosis-dakkar-2bd8b0f49973a10ad4328b7538ea27e037c5dec5.zip |
Renable test.
Diffstat (limited to 'gitosis/test')
-rw-r--r-- | gitosis/test/test_init.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gitosis/test/test_init.py b/gitosis/test/test_init.py index e3531a3..feca828 100644 --- a/gitosis/test/test_init.py +++ b/gitosis/test/test_init.py @@ -49,9 +49,9 @@ def test_init_admin_repository(): # the only thing guaranteed of initial config file ordering is # that [gitosis] is first got = util.readFile(os.path.join(export_dir, 'gitosis.conf')) - # We can't gaurentee this anymore - #got = got.splitlines()[0] - #eq(got, '[gitosis]') + # We can't gaurentee this anymore + got = got.splitlines()[0] + eq(got, '[gitosis]') cfg.read(os.path.join(export_dir, 'gitosis.conf')) eq(sorted(cfg.sections()), sorted([ |