Allow *args for get_tested_path.

This commit is contained in:
Martin Liska 2023-04-24 10:53:31 +02:00
parent ef6052b111
commit 600830222e
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ HAS_ENGLISH_DICTIONARY = _has_dictionary('en_US')
HAS_CZECH_DICTIONARY = _has_dictionary('cs_CZ')
def get_tested_path(path):
return _testpath() / path
def get_tested_path(*paths):
return _testpath().joinpath(*paths)
def get_tested_package(name, testdir):