From 14cfc8d3429d274183aa583f61bbdcb699d5525b Mon Sep 17 00:00:00 2001 From: hpk Date: Tue, 2 Sep 2008 14:45:50 +0200 Subject: [PATCH] [svn r57757] adapt output checking test for slightly different output --HG-- branch : trunk --- py/code/testing/test_excinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/code/testing/test_excinfo.py b/py/code/testing/test_excinfo.py index 73cef7394..bed7dcb52 100644 --- a/py/code/testing/test_excinfo.py +++ b/py/code/testing/test_excinfo.py @@ -215,7 +215,7 @@ def test_excinfo_no_sourcecode(): except ValueError: excinfo = py.code.ExceptionInfo() s = str(excinfo.traceback[-1]) - assert s == " File '':1 in \n ???\n" + assert s == " File '':1 in ?\n ???\n" def test_entrysource_Queue_example(): import Queue