Skip to content

Commit

Permalink
Add sorted for consistent ordering files Windows/Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
smknaake committed Oct 16, 2024
1 parent 79f3d73 commit 4dfff9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_read_uullg_table(

@pytest.mark.unittest
def test_read_gef_cpts(data_dir):
files = Path(data_dir / "cpt").glob("*.gef")
files = sorted(Path(data_dir / "cpt").glob("*.gef"))
cpts = read_gef_cpts(files)
assert isinstance(cpts, CptCollection)

Expand Down

0 comments on commit 4dfff9c

Please sign in to comment.