Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/gph82/mdciao
Browse files Browse the repository at this point in the history
  • Loading branch information
gph82 committed Oct 28, 2024
2 parents d2c1411 + 32478b2 commit 40a07ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ def test_alias_unzip_to_otherfile(self):
# assert os.path.exists((os.path.splitext(local_path))[0])
files = sorted(os.listdir(td))
assert len(files) == 2
assert files[0] == "unzip_here.zip"
assert files[1] == "unzip_here"
extracted = sorted(os.listdir(files[1]))
assert files[0] == "unzip_here"
assert files[1] == "unzip_here.zip"
extracted = sorted(os.listdir(files[0]))
assert extracted[0] == "A.dat"
assert extracted[1] == "B.dat"

Expand Down

0 comments on commit 40a07ac

Please sign in to comment.