diff options
author | Michael Adam <obnox@samba.org> | 2012-11-27 16:43:25 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-11-30 17:17:19 +0100 |
commit | 4970d3cacbd6b9a76e64030cc79628f3dfecce1b (patch) | |
tree | afd7e5937b637dc588e4cfe97c6f17405122cbd4 /source4/scripting/python | |
parent | a58124208006ba9311588554b147acfb86d4d4eb (diff) | |
download | samba-4970d3cacbd6b9a76e64030cc79628f3dfecce1b.tar.gz samba-4970d3cacbd6b9a76e64030cc79628f3dfecce1b.tar.bz2 samba-4970d3cacbd6b9a76e64030cc79628f3dfecce1b.zip |
s4:tests/samba_tool/gpo.py: fix accidential line break
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/scripting/python')
-rw-r--r-- | source4/scripting/python/samba/tests/samba_tool/gpo.py | 3 |
1 files changed, 1 insertions, 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 ce8c65f7f0..e20a97794a 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): |