summaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-05-11 17:24:20 -0400
committerJim Meyering <jim@meyering.net>2006-05-11 17:24:20 -0400
commit85005517223359b0326045a7add495f77043fecc (patch)
tree8c9631fc93002f55232ed97860957088a90bfa89 /tests/tests.py
parent47c86a2aa148df4fab9e0725fae639c1dfe1790d (diff)
downloadthird_party-cobbler-85005517223359b0326045a7add495f77043fecc.tar.gz
third_party-cobbler-85005517223359b0326045a7add495f77043fecc.tar.xz
third_party-cobbler-85005517223359b0326045a7add495f77043fecc.zip
Added licensing and RH copyright. Pychecker (once again). Fixed one unit test where I changed a command line syntax.
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 2a08f99..03fa5f6 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -287,9 +287,7 @@ class TestCLIBasic(BootTest):
# is not included (yet) since the API tests hit that fairly throughly
# and it would easily double the length of the tests.
app = "cobbler/cobbler"
- self.assertTrue(subprocess.call([app,"system","list"]) == 0)
- self.assertTrue(subprocess.call([app,"distro","list"]) == 0)
- self.assertTrue(subprocess.call([app,"profile","list"]) == 0)
+ self.assertTrue(subprocess.call([app,"list"]) == 0)
if __name__ == "__main__":
if not os.path.exists("setup.py"):