aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/01_test_help.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-10-30 20:03:33 +0100
committerGuido Günther <agx@sigxcpu.org>2011-11-01 18:12:48 +0100
commite28ea0740a7b4eb2ef4c1bd3079d77a40c6072b8 (patch)
tree779145e71a996c471a1d1a6b1acde1bc90deecc4 /tests/01_test_help.py
parentabf90abcba15beb51196cf503f35695acdcd91c1 (diff)
Get rid of the symlink
by moving the commands to gbp/scripts/
Diffstat (limited to 'tests/01_test_help.py')
-rw-r--r--tests/01_test_help.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/01_test_help.py b/tests/01_test_help.py
index 8d520694..02b19c8a 100644
--- a/tests/01_test_help.py
+++ b/tests/01_test_help.py
@@ -9,12 +9,12 @@ class TestHelp(unittest.TestCase):
"""Test help output of gbp commands"""
def testHelp(self):
for prog in [ "buildpackage", "import-orig", "import-dsc", "dch" ]:
- ret = os.system("./git-%s --help >/dev/null" % prog)
+ ret = os.system("bin/git-%s --help >/dev/null" % prog)
self.assertEqual(ret, 0)
def testHelpGbp(self):
for prog in [ "pull", "clone", "pq", "create-remote-repo" ]:
- ret = os.system("./gbp-%s --help >/dev/null" % prog)
+ ret = os.system("bin/gbp-%s --help >/dev/null" % prog)
self.assertEqual(ret, 0)
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: