fix incompatibility in doctree between gettext and the rest

This commit is contained in:
Georg Brandl 2014-09-21 18:46:15 +02:00
parent b637f0a728
commit 70cf797c10
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ from nose.tools import assert_true, assert_in, assert_equal
from util import with_app, gen_with_app, SkipTest
@gen_with_app('gettext')
@gen_with_app('gettext', srcdir='root-gettext')
def test_all(app, status, warning):
# Generic build; should fail only when the builder is horribly broken.
app.builder.build_all()

View File

@ -24,7 +24,7 @@ warnings = []
def setup_module():
global app, env
app = TestApp(srcdir='env-test')
app = TestApp(srcdir='root-envtest')
env = app.env
env.set_warnfunc(lambda *args: warnings.append(args))