From 3cf7c74d1e5e5f79ffe306c5a5ad9d3c40fc837f Mon Sep 17 00:00:00 2001 From: guido Date: Thu, 25 Jan 2007 21:39:43 +0100 Subject: [PATCH] [svn r37355] Fixing test (not sure why it was in this state?). --HG-- branch : trunk --- py/apigen/tracer/testing/test_docgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/apigen/tracer/testing/test_docgen.py b/py/apigen/tracer/testing/test_docgen.py index 85e64042b..5ddcbb39b 100644 --- a/py/apigen/tracer/testing/test_docgen.py +++ b/py/apigen/tracer/testing/test_docgen.py @@ -427,7 +427,7 @@ def test_get_initpkg_star_items(): t.start_tracing() pkg.main.sub.func("a1") pkg.main.SomeClass(3).get_somevar() - pkg.main.SomeSubClass("xxx").get_somevar() + pkg.main.SomeSubClass(4).get_somevar() t.end_tracing() assert isinstance(ds.descs['main.sub.func'].inputcells[0], model.SomeString) desc = ds.descs['main.SomeClass']