diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2010-12-09 04:57:08 +0200 |
---|---|---|
committer | Kamen Mazdrashki <kamenim@samba.org> | 2010-12-15 00:51:19 +0100 |
commit | efcc3c0d796d66c5eddeabf5f8fe00769a17b72b (patch) | |
tree | 96701695b9d53e3f0be429e9a89d840a1b7a1bd4 /source4/torture/drs | |
parent | 13790757620827eed73a81462386d269bdfa0fa7 (diff) | |
download | samba-efcc3c0d796d66c5eddeabf5f8fe00769a17b72b.tar.gz samba-efcc3c0d796d66c5eddeabf5f8fe00769a17b72b.tar.bz2 samba-efcc3c0d796d66c5eddeabf5f8fe00769a17b72b.zip |
s4-test/repl_schema: use 'top' as default base class for our test classSchema objects
Otherwise we will end up passing whole inheritance chain
every time we create some new fancy classSchema object
(as the 'cls-A' and 'cls-B' ones in test_classWithCustomAttribute test)
Diffstat (limited to 'source4/torture/drs')
-rw-r--r-- | source4/torture/drs/python/repl_schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/drs/python/repl_schema.py b/source4/torture/drs/python/repl_schema.py index 6e31dc8c1c..997c94874f 100644 --- a/source4/torture/drs/python/repl_schema.py +++ b/source4/torture/drs/python/repl_schema.py @@ -125,7 +125,7 @@ class DrsReplSchemaTestCase(samba.tests.TestCase): "governsId": "1.2.840." + str(random.randint(1,100000)) + ".1.5.13", "instanceType": "4", "objectClassCategory": "1", - "subClassOf": "organizationalPerson", + "subClassOf": "top", "systemOnly": "FALSE"} # allow overriding/adding attributes if not attrs is None: |