[pypy-svn] r39176 - pypy/dist/pypy/lang/js/test/ecma

fijal at codespeak.net fijal at codespeak.net
Sun Feb 18 19:51:35 CET 2007


Author: fijal
Date: Sun Feb 18 19:51:34 2007
New Revision: 39176

Modified:
   pypy/dist/pypy/lang/js/test/ecma/conftest.py
Log:
Common typo


Modified: pypy/dist/pypy/lang/js/test/ecma/conftest.py
==============================================================================
--- pypy/dist/pypy/lang/js/test/ecma/conftest.py	(original)
+++ pypy/dist/pypy/lang/js/test/ecma/conftest.py	Sun Feb 18 19:51:34 2007
@@ -47,7 +47,7 @@
         t = load_source(self.filepath.read())
         try:
             t.execute(self.interp.global_context)
-        except JsBaseExcept, JsSyntaxError:
+        except (JsBaseExcept, JsSyntaxError):
             py.test.fail("Could not load js file")
         testcases = self.interp.global_context.resolve_identifier('testcases')
         values = testcases.GetValue().array



More information about the Pypy-commit mailing list