# HG changeset patch # User Sylvain Thénault # Date 1319181888 -7200 # Node ID c85bea091a6c7583deb344a49f6282cd1872ed53 # Parent 8bd5031e2201b9482ccb70dde9ae0bca9bdc1930 [test] fix failures introduced by 7951:b7c825b00f64 diff -r 8bd5031e2201 -r c85bea091a6c entities/test/unittest_base.py --- a/entities/test/unittest_base.py Fri Oct 21 09:24:29 2011 +0200 +++ b/entities/test/unittest_base.py Fri Oct 21 09:24:48 2011 +0200 @@ -49,7 +49,7 @@ self.assertEqual(entity.dc_creator(), u'member') def test_type(self): - self.assertEqual(self.member.dc_type(), 'cwuser') + self.assertEqual(self.member.dc_type(), 'CWUser') def test_entity_meta_attributes(self): # XXX move to yams diff -r 8bd5031e2201 -r c85bea091a6c sobjects/test/unittest_notification.py --- a/sobjects/test/unittest_notification.py Fri Oct 21 09:24:29 2011 +0200 +++ b/sobjects/test/unittest_notification.py Fri Oct 21 09:24:48 2011 +0200 @@ -99,7 +99,7 @@ url: http://testing.fr/cubicweb/cwuser/toto ''') - self.assertEqual(email.subject, 'status changed cwuser #%s (admin)' % u.eid) + self.assertEqual(email.subject, 'status changed CWUser #%s (admin)' % u.eid) if __name__ == '__main__': unittest_main() diff -r 8bd5031e2201 -r c85bea091a6c web/test/unittest_breadcrumbs.py --- a/web/test/unittest_breadcrumbs.py Fri Oct 21 09:24:29 2011 +0200 +++ b/web/test/unittest_breadcrumbs.py Fri Oct 21 09:24:48 2011 +0200 @@ -1,4 +1,4 @@ -# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This file is part of CubicWeb. @@ -35,7 +35,7 @@ l = [] ibc.render(l.append) self.assertEqual(''.join(l), - """ > folder_plural > par&ent >  + """ > Folder_plural > par&ent >  chi&ld""" % (f1.eid, f2.eid)) if __name__ == '__main__':