summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-18 01:05:36 +0100
committerhut <hut@lavabit.com>2010-03-09 14:40:21 +0100
commit895e04b312544515549fe953e0264d572837ae55 (patch)
tree49d3d9c4b4ed27dec4f23d11a0436fcb85dbdee4 /test
parente975b52f9e83bf2ca3fbb6cf066ccd662518a7df (diff)
downloadranger-895e04b312544515549fe953e0264d572837ae55.tar.gz
keyparser: Remove the restriction that a root can't be a leaf
Diffstat (limited to 'test')
-rw-r--r--test/tc_newkeys.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/tc_newkeys.py b/test/tc_newkeys.py
index 10519dbf..df32c14a 100644
--- a/test/tc_newkeys.py
+++ b/test/tc_newkeys.py
@@ -233,7 +233,6 @@ def translate_keys(obj):
 
 class Tree(object):
 	def __init__(self, dictionary=None, parent=None, key=None):
-		assert dictionary is None or isinstance(dictionary, dict)
 		if dictionary is None:
 			self._tree = dict()
 		else: