Skip to content

Commit

Permalink
Fix affected tests
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz-1306 committed Apr 7, 2021
1 parent 9bc0f81 commit 0788e6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fuzz.py
Expand Up @@ -66,7 +66,7 @@ def test_fuzz_no_build_dir(tmp_path):

result = runner.invoke(cli, ["fuzz", "run", "contracts"])
assert (
"Error: build_directory not found on .mythx.yaml config file" in result.output
"Error: build_directory not found on .mythx.yml config file" in result.output
)
assert result.exit_code != 0

Expand All @@ -78,7 +78,7 @@ def test_fuzz_no_deployed_address(tmp_path):

result = runner.invoke(cli, ["fuzz", "run", "contracts"])
assert (
"Error: deployed_contract_address not found on .mythx.yaml config file."
"Error: deployed_contract_address not found on .mythx.yml config file."
in result.output
)
assert result.exit_code != 0
Expand Down

0 comments on commit 0788e6a

Please sign in to comment.