From 4970d3cacbd6b9a76e64030cc79628f3dfecce1b Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 27 Nov 2012 16:43:25 +0100 Subject: [PATCH] s4:tests/samba_tool/gpo.py: fix accidential line break Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher --- source4/scripting/python/samba/tests/samba_tool/gpo.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source4/scripting/python/samba/tests/samba_tool/gpo.py b/source4/scripting/python/samba/tests/samba_tool/gpo.py index ce8c65f7f09..e20a97794ae 100644 --- a/source4/scripting/python/samba/tests/samba_tool/gpo.py +++ b/source4/scripting/python/samba/tests/samba_tool/gpo.py @@ -34,8 +34,7 @@ class GpoCmdTestCase(SambaToolCmdTest): def test_fetchfail(self): """Run against a non-existent GPO, and make sure it fails (this hard-coded UUID is very unlikely to exist""" - (result, out, err) = self.runsubcmd("gpo", "fetch", "c25cac17-a02a-4151-835d-fae17446ee43", "-H", "ldap://%s" % -os.environ["SERVER"]) + (result, out, err) = self.runsubcmd("gpo", "fetch", "c25cac17-a02a-4151-835d-fae17446ee43", "-H", "ldap://%s" % os.environ["SERVER"]) self.assertEquals(result, -1, "check for result code") def test_fetch(self): -- 2.11.4.GIT