[Checkins] SVN: zc.authorizedotnet/trunk/s Adjust test renormalizer for 64-bit builds.

Zvezdan Petkovic zvezdan at zope.com
Wed Apr 7 15:10:12 EDT 2010


Log message for revision 110609:
  Adjust test renormalizer for 64-bit builds.
  
  

Changed:
  U   zc.authorizedotnet/trunk/setup.py
  U   zc.authorizedotnet/trunk/src/zc/authorizedotnet/tests.py

-=-
Modified: zc.authorizedotnet/trunk/setup.py
===================================================================
--- zc.authorizedotnet/trunk/setup.py	2010-04-07 18:43:03 UTC (rev 110608)
+++ zc.authorizedotnet/trunk/setup.py	2010-04-07 19:10:12 UTC (rev 110609)
@@ -7,9 +7,9 @@
 name = "zc.authorizedotnet"
 setup(
     name = name,
-    version = "1.3",
+    version = "1.3.1",
     author = "Zope Corporation",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "A simple interface to Authorize.Net's AIM API",
     long_description=read('src', 'zc', 'authorizedotnet', 'README.txt'),
     license = "ZPL 2.1",

Modified: zc.authorizedotnet/trunk/src/zc/authorizedotnet/tests.py
===================================================================
--- zc.authorizedotnet/trunk/src/zc/authorizedotnet/tests.py	2010-04-07 18:43:03 UTC (rev 110608)
+++ zc.authorizedotnet/trunk/src/zc/authorizedotnet/tests.py	2010-04-07 19:10:12 UTC (rev 110609)
@@ -245,7 +245,7 @@
 def test_suite():
     checker = renormalizing.RENormalizing([
         (re.compile(r"'.{6}'"), "'123456'"), # for approval codes
-        (re.compile(r"'\d{9}'"), "'123456789'"), # for transaction IDs
+        (re.compile(r"'\d{9,10}'"), "'123456789'"), # for transaction IDs
         ])
 
     remote = doctest.DocFileSuite(



More information about the checkins mailing list