Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Sep 4, 2023
1 parent 39cc725 commit 37259e6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sdrf_pipelines/tests/test_sdrfchecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ def test_validate_srdf():
runner = CliRunner()
result = runner.invoke(cli, ["validate-sdrf", "--sdrf_file", "testdata/PXD000288.sdrf.tsv", "--check_ms"])

print(result.output)
assert "ERROR" not in result.output
assert "ERROR" in result.output


def test_convert_openms():
Expand All @@ -20,7 +19,7 @@ def test_convert_openms():
"""
runner = CliRunner()
result = runner.invoke(cli, ["convert-openms", "-t2", "-s", "testdata/PXD000288.sdrf.tsv"])
print("convert to openms" + result.output)
print("convert to openms " + result.output)
assert "ERROR" not in result.output


Expand All @@ -32,7 +31,7 @@ def test_convert_openms_file_extensions():
result = runner.invoke(
cli, ["convert-openms", "-t2", "-s", "testdata/PXD000288.sdrf.tsv", "--extension_convert", "raw:mzML"]
)
print("convert to openms" + result.output)
print("convert to openms " + result.output)
assert "ERROR" not in result.output


Expand Down

0 comments on commit 37259e6

Please sign in to comment.