[svn r58017] fixing two more glitches

--HG--
branch : trunk
This commit is contained in:
hpk 2008-09-09 19:47:39 +02:00
parent 2bac2ed175
commit c7e867d969
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class TestPyLookup(AcceptBase):
def test_search_in_filename(self):
p = self.makepyfile(hello="def x(): pass")
result = self.run("py.lookup", "hello")
result = self.runpybin("py.lookup", "hello")
suptest.assert_lines_contain_lines(result.outlines,
['*%s:*' %(p.basename)]
)

View File

@ -32,7 +32,7 @@ class TestGraphviz(object):
png.remove()
def _graphviz_pdf(self):
for exe in 'dot latex epstopdf'.split():
for exe in 'dot latex epstopdf ps2eps'.split():
if not py.path.local.sysfind(exe):
py.test.skip("%r needed" %(exe,))