server/test/unittest_schemaserial.py
changeset 2476 1294a6bdf3bf
parent 2447 b83fcc2311af
child 2730 bb6fcb8c5d71
--- a/server/test/unittest_schemaserial.py	Fri Jul 24 13:50:59 2009 +0200
+++ b/server/test/unittest_schemaserial.py	Fri Jul 24 14:33:37 2009 +0200
@@ -24,7 +24,7 @@
         self.assertListEquals(list(eschema2rql(schema.eschema('CWAttribute'))),
                               [
             ('INSERT CWEType X: X description %(description)s,X final %(final)s,X name %(name)s',
-             {'description': u'define a final relation: link a final relation type from a non final entity to a final entity type. used to build the application schema',
+             {'description': u'define a final relation: link a final relation type from a non final entity to a final entity type. used to build the instance schema',
               'name': u'CWAttribute', 'final': False})
             ])
 
@@ -101,7 +101,7 @@
     def test_updateeschema2rql1(self):
         self.assertListEquals(list(updateeschema2rql(schema.eschema('CWAttribute'))),
                               [('SET X description %(description)s,X final %(final)s,X name %(name)s WHERE X is CWEType, X name %(et)s',
-                                {'description': u'define a final relation: link a final relation type from a non final entity to a final entity type. used to build the application schema', 'et': 'CWAttribute', 'final': False, 'name': u'CWAttribute'}),
+                                {'description': u'define a final relation: link a final relation type from a non final entity to a final entity type. used to build the instance schema', 'et': 'CWAttribute', 'final': False, 'name': u'CWAttribute'}),
                                ])
 
     def test_updateeschema2rql2(self):