summaryrefslogtreecommitdiffstats
path: root/source4/scripting
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-11-27 16:43:25 +0100
committerMichael Adam <obnox@samba.org>2012-11-30 17:17:19 +0100
commit4970d3cacbd6b9a76e64030cc79628f3dfecce1b (patch)
treeafd7e5937b637dc588e4cfe97c6f17405122cbd4 /source4/scripting
parenta58124208006ba9311588554b147acfb86d4d4eb (diff)
downloadsamba-4970d3cacbd6b9a76e64030cc79628f3dfecce1b.tar.gz
samba-4970d3cacbd6b9a76e64030cc79628f3dfecce1b.tar.xz
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')
-rw-r--r--source4/scripting/python/samba/tests/samba_tool/gpo.py3
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 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):