summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/tests/upgrade.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-12-27 03:09:49 -0600
committerStefan Metzmacher <metze@samba.org>2007-12-26 21:18:02 -0600
commit222262b54e74a01a66b3cbbea5502d4ce488905d (patch)
treed51f4307a93ae04cdd762d969db8b4a114ca365f /source4/scripting/python/samba/tests/upgrade.py
parentc4d3666ac2821518be57ca89d963f77bbddaedf4 (diff)
downloadsamba-222262b54e74a01a66b3cbbea5502d4ce488905d.tar.gz
samba-222262b54e74a01a66b3cbbea5502d4ce488905d.tar.xz
samba-222262b54e74a01a66b3cbbea5502d4ce488905d.zip
r26608: More improvements to the upgrade code.
(This used to be commit 7ea06d91f602f770f55a1171174f11b922fed8e7)
Diffstat (limited to 'source4/scripting/python/samba/tests/upgrade.py')
-rw-r--r--source4/scripting/python/samba/tests/upgrade.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/source4/scripting/python/samba/tests/upgrade.py b/source4/scripting/python/samba/tests/upgrade.py
index a25743425bb..ddafa00691b 100644
--- a/source4/scripting/python/samba/tests/upgrade.py
+++ b/source4/scripting/python/samba/tests/upgrade.py
@@ -17,12 +17,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
-from samba.upgrade import regkey_to_dn
+import samba.upgrade
from unittest import TestCase
-class RegkeyDnTests(TestCase):
- def test_empty(self):
- self.assertEquals("hive=NONE", regkey_to_dn(""))
-
- def test_nested(self):
- self.assertEquals("key=bar,key=foo,hive=NONE", regkey_to_dn("foo/bar"))