From 07db3fd2ccdcae543653fa6e0bb4e9783b76c5fb Mon Sep 17 00:00:00 2001 From: hpk Date: Wed, 7 Feb 2007 20:41:50 +0100 Subject: [PATCH] [svn r38110] i don't think one needs to use svnwc's anymore, at least it works for me, i think. --HG-- branch : trunk --- py/rest/testing/test_directive.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/py/rest/testing/test_directive.py b/py/rest/testing/test_directive.py index ab3b8fc94..cc4318e28 100644 --- a/py/rest/testing/test_directive.py +++ b/py/rest/testing/test_directive.py @@ -15,10 +15,9 @@ def test_graphviz_html(): if not py.path.local.sysfind("dot"): py.test.skip("graphviz needed") directive.set_backend_and_register_directives("html") - #for reasons that elude me rest.process expects svnwcs??? if not py.path.local.sysfind("svn"): py.test.skip("svn needed") - txt = py.path.svnwc(datadir.join("graphviz.txt")) + txt = datadir.join("graphviz.txt") html = txt.new(ext="html") png = datadir.join("example1.png") rest.process(txt)