Skip to content

Commit

Permalink
test: fixed readline completions test
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Nov 24, 2024
1 parent d8b7dff commit bc79656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_readline.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def test_matches():
assert ".git/" in _matches("")
assert _matches(".githu") == [".github/"]
assert _matches(".github") == [".github/"]
assert set(_matches(".github/")) == {
assert {
".github/workflows/",
".github/actions/",
".github/codecov.yml",
}
} <= set(_matches(".github/"))

# files
assert _matches("README") == ["README.md"]
Expand Down

0 comments on commit bc79656

Please sign in to comment.