Skip to content

Commit

Permalink
updated error message
Browse files Browse the repository at this point in the history
  • Loading branch information
adriaan-vd-graaf committed Nov 27, 2024
1 parent 468a6de commit eeef37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests_mr_link_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def test_plink_version():
result = subprocess.run(['plink', '--version'], capture_output=True, text=True)
assert result.returncode == 0, "PLINK is not installed or not in the PATH"
assert 'PLINK v1.90' in result.stdout, "PLINK version is not 1.9"
assert 'PLINK v1.90' in result.stdout, "PLINK version is not literallly 'v1.90'"

"""
I guess these are to ensure that no regressions happen
Expand Down

0 comments on commit eeef37e

Please sign in to comment.