diff tests/test.py @ 63:af1476a936fc

add a multipart processor so we can post damn files
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 01 Mar 2012 16:57:00 -0800
parents 53ec5144f84f
children bb8d993376aa
line wrap: on
line diff
--- a/tests/test.py	Thu Mar 01 16:20:44 2012 -0800
+++ b/tests/test.py	Thu Mar 01 16:57:00 2012 -0800
@@ -41,8 +41,8 @@
         doctest_args['optionflags'] = doctest.REPORT_ONLY_FIRST_FAILURE
 
     # gather tests
-    tests =  [ test for test in os.listdir(directory)
-               if test.endswith('.txt') ]
+    tests =  [test for test in os.listdir(directory)
+              if test.endswith('.txt')]
 
     # run the tests
     for test in tests: