Skip to content

Commit

Permalink
fix missing assert
Browse files Browse the repository at this point in the history
  • Loading branch information
waketzheng committed May 10, 2024
1 parent b8c341d commit e2ac054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

def test_version():
r = subprocess.run(["poetry", "version", "-s"], capture_output=True)
r.stdout.decode() == __version__
assert r.stdout.decode().strip() == __version__

0 comments on commit e2ac054

Please sign in to comment.