diff options
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') |