Skip to content

Commit

Permalink
test: battle of the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Jan 5, 2024
1 parent 953cff2 commit df44566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/test_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def test_compile_with_config_override(dependency_manager, project):
override = {"contracts_folder": "src"}
path = "__test_path__"
contracts_path = project.path / path / "contracts"
contracts_path.mkdir(parents=True)
contracts_path.mkdir(exist_ok=True, parents=True)
(contracts_path / "contract.json").write_text('{"abi": []}')
data = {"name": "FooBar", "local": path, "config_override": override}
dependency = dependency_manager.decode_dependency(data)
Expand Down

0 comments on commit df44566

Please sign in to comment.