summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-17 13:05:25 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-17 13:05:25 +0200
commitdd0da89e841e5df0c1fe27122df0c1644278c65e (patch)
tree75de1500ca458d977c36831491a9495738da9c2c /source4/scripting
parent0197b8e0ff8dc26eeb71dccf61d8937c63bacff5 (diff)
parent4d8f3f190215edcdbeb1725cccdc962dc68cc1a0 (diff)
downloadsamba-dd0da89e841e5df0c1fe27122df0c1644278c65e.tar.gz
samba-dd0da89e841e5df0c1fe27122df0c1644278c65e.tar.bz2
samba-dd0da89e841e5df0c1fe27122df0c1644278c65e.zip
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
(This used to be commit ece878c1f9251b83598508e23ce0015b4db72f0a)
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/python/samba/tests/dcerpc/unix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/tests/dcerpc/unix.py b/source4/scripting/python/samba/tests/dcerpc/unix.py
index 43978ac9dc..78a987cedd 100644
--- a/source4/scripting/python/samba/tests/dcerpc/unix.py
+++ b/source4/scripting/python/samba/tests/dcerpc/unix.py
@@ -27,8 +27,8 @@ class UnixinfoTests(RpcInterfaceTestCase):
def test_getpwuid(self):
infos = self.conn.GetPWUid(range(512))
self.assertEquals(512, len(infos))
- self.assertEquals("", infos[0].shell)
- self.assertEquals("", infos[0].homedir)
+ self.assertEquals("/bin/false", infos[0].shell)
+ self.assertTrue(isinstance(infos[0].homedir, unicode))
def test_gidtosid(self):
self.conn.GidToSid(1000)