Skip to content

Commit

Permalink
Fix assert statement
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
  • Loading branch information
merelcht committed Feb 3, 2023
1 parent 110a60e commit c0736e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/framework/cli/micropkg/test_micropkg_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ def test_empty_pipeline_requirements_txt(
def test_complex_requirements(
self, requirement, fake_project_cli, fake_metadata, fake_package_path
):
# pylint: disable=condition-evals-to-constant
"""Options that are valid in requirements.txt but cannot be packaged using
setup.py."""
self.call_pipeline_create(fake_project_cli, fake_metadata)
Expand All @@ -266,5 +265,6 @@ def test_complex_requirements(
assert result.exit_code == 1
assert (
"InvalidRequirement: Expected package name at the start of dependency specifier"
in result.output
or "InvalidRequirement: Expected end or semicolon" in result.output
)

0 comments on commit c0736e6

Please sign in to comment.