[Checkins] SVN: PluggableAuthService/trunk/plugins/tests/test_ZODBUserManager.py Fix badly applied patch for member search duplication issue. This fix is in response to a plone tracker issue http://dev.plone.org/plone/ticket/6300

Alec Mitchell apm13 at columbia.edu
Sun Apr 1 06:31:24 EDT 2007


Log message for revision 73962:
  Fix badly applied patch for member search duplication issue.  This fix is in response to a plone tracker issue http://dev.plone.org/plone/ticket/6300
  

Changed:
  U   PluggableAuthService/trunk/plugins/tests/test_ZODBUserManager.py

-=-
Modified: PluggableAuthService/trunk/plugins/tests/test_ZODBUserManager.py
===================================================================
--- PluggableAuthService/trunk/plugins/tests/test_ZODBUserManager.py	2007-04-01 09:19:50 UTC (rev 73961)
+++ PluggableAuthService/trunk/plugins/tests/test_ZODBUserManager.py	2007-04-01 10:31:23 UTC (rev 73962)
@@ -257,6 +257,10 @@
 
             zum.addUser( id, '%s at example.com' % id, 'password' )
 
+        info_list = zum.enumerateUsers( email='bar at example.com',
+                                        exact_match=False )
+        self.assertEqual( len( info_list ), 0 )
+
     def test_enumerateUsers_exact_nonesuch( self ):
 
         from Products.PluggableAuthService.tests.test_PluggableAuthService \



More information about the Checkins mailing list