diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-26 12:19:09 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-26 12:19:09 +0200 |
commit | 40a90e6a5581f74b2e8caf67d934a08e8a9befc9 (patch) | |
tree | a34823fd0dec12eb87976e20e4dbdb3f3e4e1069 /source4/scripting | |
parent | 58b1ab92a117cfcb311bdcb41fe563077ad39500 (diff) | |
parent | 98e72f574a9ce2a676bcb010e4e6ee2df39af4b6 (diff) | |
download | samba-40a90e6a5581f74b2e8caf67d934a08e8a9befc9.tar.gz samba-40a90e6a5581f74b2e8caf67d934a08e8a9befc9.tar.xz samba-40a90e6a5581f74b2e8caf67d934a08e8a9befc9.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-pyirpc
(This used to be commit e1af9708c9b40edfa21862028672882797218174)
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/tests/dcerpc/rpcecho.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py index 68b7a42d52..bbbd0d76ec 100644 --- a/source4/scripting/python/samba/tests/dcerpc/rpcecho.py +++ b/source4/scripting/python/samba/tests/dcerpc/rpcecho.py @@ -27,7 +27,7 @@ class RpcEchoTests(RpcInterfaceTestCase): self.conn = echo.rpcecho("ncalrpc:", self.get_loadparm()) def test_two_contexts(self): - self.conn2 = echo.rpcecho("ncalrpc", basis_connection=self.conn) + self.conn2 = echo.rpcecho("ncalrpc:", basis_connection=self.conn) self.assertEquals(3, self.conn2.AddOne(2)) def test_abstract_syntax(self): |