diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-09-27 16:02:52 +0100 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-09-27 16:02:52 +0100 |
commit | 51927bb6e416aea4f30b39de28e40b53168b7fed (patch) | |
tree | 56b97c9072d48681cc9ac2a9f825898910101bd1 /tests/test_application.py | |
parent | f01d50d695bf55f1af34b87c4e6c84f76dd9a36d (diff) | |
parent | 7d67371f38210ed328e6249e73ec1e5e607dacd1 (diff) | |
download | sphinx-git-51927bb6e416aea4f30b39de28e40b53168b7fed.tar.gz |
Merge branch '5.x'
Diffstat (limited to 'tests/test_application.py')
-rw-r--r-- | tests/test_application.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_application.py b/tests/test_application.py index 90758a939..e297effce 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -149,7 +149,7 @@ def test_build_specific(app): app.srcdir / 'subdir/../subdir/excluded.txt'] # not normalized app.build(False, filenames) - expected = ['index', 'img.png', 'subdir/includes', 'subdir/excluded'] + expected = ['index', 'subdir/includes', 'subdir/excluded'] app.builder.build.assert_called_with(expected, method='specific', - summary='4 source files given on command line') + summary='3 source files given on command line') |