[py-svn] r36944 - py/branch/config/py/test/tkinter/testing

hpk at codespeak.net hpk at codespeak.net
Thu Jan 18 16:19:49 CET 2007


Author: hpk
Date: Thu Jan 18 16:19:47 2007
New Revision: 36944

Modified:
   py/branch/config/py/test/tkinter/testing/test_backend.py
Log:
fix non-uniform way of invocation


Modified: py/branch/config/py/test/tkinter/testing/test_backend.py
==============================================================================
--- py/branch/config/py/test/tkinter/testing/test_backend.py	(original)
+++ py/branch/config/py/test/tkinter/testing/test_backend.py	Thu Jan 18 16:19:47 2007
@@ -178,9 +178,9 @@
         assert l[0] is None
 
     def test_start_tests(self):
-        config = py.test.config._reparse([])
+        config = py.test.config._reparse([datadir/'filetest.py'])
         self.backend.start_tests(config = config,
-                                 args = [str(datadir / 'filetest.py')],
+                                 args = config.remaining,
                                  tests = [])
         while self.backend.running:
             self.backend.update()



More information about the pytest-commit mailing list