devtools/testlib.py
branchstable
changeset 6408 7674f674de40
parent 6403 b7e24d49639b
child 6409 d75535983224
child 6410 2e7a7b0829ed
--- a/devtools/testlib.py	Thu Oct 07 18:51:13 2010 +0200
+++ b/devtools/testlib.py	Thu Oct 07 19:02:00 2010 +0200
@@ -293,8 +293,8 @@
 
     def setUp(self):
         # monkey patch send mail operation so emails are sent synchronously
-        self._old_mail_postcommit_event = SendMailOp.postcommit_event
-        SendMailOp.postcommit_event = SendMailOp.sendmails
+        self._old_mail_commit_event = SendMailOp.commit_event
+        SendMailOp.commit_event = SendMailOp.sendmails
         pause_tracing()
         previous_failure = self.__class__.__dict__.get('_repo_init_failed')
         if previous_failure is not None:
@@ -316,7 +316,7 @@
         for cnx in self._cnxs:
             if not cnx._closed:
                 cnx.close()
-        SendMailOp.postcommit_event = self._old_mail_postcommit_event
+        SendMailOp.commit_event = self._old_mail_commit_event
 
     def setup_database(self):
         """add your database setup code by overriding this method"""