diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-03-26 17:33:56 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-03-26 17:33:56 +0900 |
commit | 6d08efe2dd28ad3084f2e6fe056c8df7d876a019 (patch) | |
tree | 718bd336862c9f4893cdef5417f9d742caf83f1f | |
parent | d3d9e3dfc8e049200f366451bf71ac84be78c0a5 (diff) | |
download | sphinx-git-6d08efe2dd28ad3084f2e6fe056c8df7d876a019.tar.gz |
test: Replace app.buildername by app.builder.name
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 6fab88b12..5015c46f3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -117,7 +117,7 @@ def app(test_params, app_params, make_app, shared_result): yield app_ print('# testroot:', kwargs.get('testroot', 'root')) - print('# builder:', app_.buildername) + print('# builder:', app_.builder.name) print('# srcdir:', app_.srcdir) print('# outdir:', app_.outdir) print('# status:', '\n' + app_._status.getvalue()) |