Skip to content

Commit

Permalink
Make the input directory name match what is expected.
Browse files Browse the repository at this point in the history
 * testsuite/tests/index/local-index-not-found/test.py: the input was
     "no-such-directory", but the output was "./no-such-directory".
     Fix the input to match that.
  • Loading branch information
simonjwright committed Dec 31, 2023
1 parent 5c40352 commit c7221e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/tests/index/local-index-not-found/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from drivers.asserts import assert_match


for d in ('no-such-directory',
for d in ('./no-such-directory',
'file://no-such-directory', ):
rm('alr-config', recursive=True)
prepare_indexes('alr-config', '.',
Expand Down

0 comments on commit c7221e0

Please sign in to comment.