test/unittest_cwconfig.py
changeset 4490 d45cde54d464
parent 4252 6c4f109c2b03
child 4681 5f72584ab1d7
--- a/test/unittest_cwconfig.py	Sat Feb 06 08:45:14 2010 +0100
+++ b/test/unittest_cwconfig.py	Mon Feb 08 11:08:55 2010 +0100
@@ -72,15 +72,15 @@
 #         self.assertRaises(KeyError, vcconf.__getitem__, 'CRM')
 
     def test_expand_cubes(self):
-        self.assertEquals(self.config.expand_cubes(('email', 'eblog')),
-                          ['email', 'eblog', 'file'])
+        self.assertEquals(self.config.expand_cubes(('email', 'blog')),
+                          ['email', 'blog', 'file'])
 
     def test_vregistry_path(self):
         self.assertEquals([unabsolutize(p) for p in self.config.vregistry_path()],
                           ['entities', 'web/views', 'sobjects', 'hooks',
                            'file/entities.py', 'file/views', 'file/hooks.py',
                            'email/entities.py', 'email/views', 'email/hooks.py',
-                           'test/data/entities.py'])
+                           'test/data/entities.py', 'test/data/views.py'])
 
     def test_cubes_path(self):
         # make sure we don't import the email cube, but the stdlib email package