We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3edda19 commit 0b75ab7Copy full SHA for 0b75ab7
1 file changed
tests/test_utils.py
@@ -686,8 +686,8 @@ def test_expand_args(monkeypatch):
686
monkeypatch.setenv("CLICK_TEST", "hello")
687
assert "hello" in asyncclick.utils._expand_args(["$CLICK_TEST"])
688
assert "pyproject.toml" in asyncclick.utils._expand_args(["*.toml"])
689
- assert os.path.join("docs", "conf.py") in asyncclick.utils._expand_args(
690
- ["**/conf.py"]
+ assert os.path.join("tests", "conftest.py") in asyncclick.utils._expand_args(
+ ["**/conftest.py"]
691
)
692
assert "*.not-found" in asyncclick.utils._expand_args(["*.not-found"])
693
# a bad glob pattern, such as a pytest identifier, should return itself
0 commit comments