From 0788e6aca374a081e23ae3f7c83c203cbe358f95 Mon Sep 17 00:00:00 2001 From: blitz-1306 Date: Wed, 7 Apr 2021 10:41:58 +0500 Subject: [PATCH] Fix affected tests --- tests/test_fuzz.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_fuzz.py b/tests/test_fuzz.py index bccf1b9..992cc34 100644 --- a/tests/test_fuzz.py +++ b/tests/test_fuzz.py @@ -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 @@ -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