Skip to content

Commit

Permalink
Sort globs
Browse files Browse the repository at this point in the history
  • Loading branch information
faho committed Jan 8, 2025
1 parent c344260 commit 5507bcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ def main():
else:
files = [
(os.path.abspath(path), path.relative_to(script_path))
for path in script_path.glob("checks/*.fish")
for path in sorted(script_path.glob("checks/*.fish"))
]
files += [
(os.path.abspath(path), path.relative_to(script_path))
for path in script_path.glob("pexpects/*.py")
for path in sorted(script_path.glob("pexpects/*.py"))
]

# Set up tempdir
Expand Down

0 comments on commit 5507bcc

Please sign in to comment.