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