Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/addontests.py
diff options
context:
space:
mode:
authorVincent Vinet <vince.vinet@gmail.com>2009-11-19 16:33:26 (GMT)
committer Vincent Vinet <vince.vinet@gmail.com>2009-11-19 16:34:28 (GMT)
commitdee6412f6beae82952ed0a07fc2bfdfb0cbb3e79 (patch)
tree1fa73b93a70150dc23f610d34e8b62e727f0f2da /tests/addontests.py
parent40f836b057896469bca69772d9fc7168b2f8c644 (diff)
refac property editing in the creator
Diffstat (limited to 'tests/addontests.py')
-rw-r--r--tests/addontests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/addontests.py b/tests/addontests.py
index 5fb4f61..ceaee2b 100644
--- a/tests/addontests.py
+++ b/tests/addontests.py
@@ -47,4 +47,4 @@ class AddonTest(unittest.TestCase):
def test_get_addon_meta(self):
addon._cache = None
meta = addon.get_addon_meta("BubbleMessage")
- assert meta.keys() == ['mandatory_props', 'class', 'display_name', 'name', 'icon',]
+ assert set(meta.keys()) == set(['type', 'mandatory_props', 'class', 'display_name', 'name', 'icon',])