aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_extensions.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_extensions.py b/tests/test_extensions.py
index b98295c..b42d65d 100644
--- a/tests/test_extensions.py
+++ b/tests/test_extensions.py
@@ -35,8 +35,9 @@ class TestExtensionClass(unittest.TestCase):
self.assertEqual(self.ext.getConfigs(), {'foo': 'bar', 'bar': 'baz'})
def testGetConfigInfo(self):
- self.assertEqual(self.ext.getConfigInfo(), [('foo', 'Description of foo'),
- ('bar', 'Description of bar')])
+ self.assertEqual(dict(self.ext.getConfigInfo()),
+ dict([('foo', 'Description of foo'),
+ ('bar', 'Description of bar')])
def testSetConfig(self):
self.ext.setConfig('foo', 'baz')