From: Owen Synge Date: Fri, 11 Jul 2014 16:43:47 +0000 (+0200) Subject: don't need the parenthesis X-Git-Tag: v1.5.9~4^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=40b89abafd29447b07cb4d9995ade0872b70b4bc;p=ceph-deploy.git don't need the parenthesis --- diff --git a/ceph_deploy/tests/unit/hosts/test_suse.py b/ceph_deploy/tests/unit/hosts/test_suse.py index fc48d4b..bd72d22 100644 --- a/ceph_deploy/tests/unit/hosts/test_suse.py +++ b/ceph_deploy/tests/unit/hosts/test_suse.py @@ -7,19 +7,19 @@ class TestSuseInit(object): def test_choose_init_default(self): self.host.release = None init_type = self.host.choose_init() - assert ( init_type == "sysvinit") + assert init_type == "sysvinit" def test_choose_init_SLE_11(self): self.host.release = '11' init_type = self.host.choose_init() - assert ( init_type == "sysvinit") + assert init_type == "sysvinit" def test_choose_init_SLE_12(self): self.host.release = '12' init_type = self.host.choose_init() - assert ( init_type == "systemd") + assert init_type == "systemd" def test_choose_init_openSUSE_13_1(self): self.host.release = '13.1' init_type = self.host.choose_init() - assert ( init_type == "systemd") + assert init_type == "systemd"