Skip to content

Commit 1cd1d6e

Browse files
change tests to allow new Python 3.13 glob behavior
Fixes #4
1 parent 69f6db6 commit 1cd1d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def test_ls_contrast():
244244
touch(d1d2f2)
245245

246246
# run test
247-
paths = ls(d1, select="**")
247+
paths = ls(d1, select="**", only="dir")
248248

249249
# check
250250
assert set(str(f) for f in paths) == set(["d1", "d1/d1", "d1/d2"])

0 commit comments

Comments
 (0)