[Modeling-cvs] ProjectModeling/Modeling/tests test_EditingContext_Global_Inheritance.py,1.11,1.12
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-06-12 11:38:09
|
Update of /cvsroot/modeling/ProjectModeling/Modeling/tests In directory sc8-pr-cvs1:/tmp/cvs-serv3943/tests Modified Files: test_EditingContext_Global_Inheritance.py Log Message: Fixed: used '%' instead of '*' in a quelifier string Index: test_EditingContext_Global_Inheritance.py =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/tests/test_EditingContext_Global_Inheritance.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** test_EditingContext_Global_Inheritance.py 12 Jun 2003 09:35:20 -0000 1.11 --- test_EditingContext_Global_Inheritance.py 12 Jun 2003 11:38:06 -0000 1.12 *************** *** 261,265 **** ec = EC() ! q = qWQF('toAddresses.zipCode like "4%"') fs_deep = FS('Employee', qualifier=q, deepFlag=1) # Note the deepFlag objs1=ec.objectsWithFetchSpecification(fs_deep) --- 261,265 ---- ec = EC() ! q = qWQF('toAddresses.zipCode like "4*"') fs_deep = FS('Employee', qualifier=q, deepFlag=1) # Note the deepFlag objs1=ec.objectsWithFetchSpecification(fs_deep) *************** *** 268,272 **** objs2=ec.objectsWithFetchSpecification(fs_deep) self.failIf(len(objs2)!=3) ! def tearDown(self): """ --- 268,272 ---- objs2=ec.objectsWithFetchSpecification(fs_deep) self.failIf(len(objs2)!=3) ! def tearDown(self): """ |