Skip to content

Commit

Permalink
test: fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Dec 4, 2020
1 parent 6c0ca93 commit 615e538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/project/main/test_interfaces_solc.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_contract_requires_interface(newproject, contract_type, import_path):
with newproject._path.joinpath("contracts/Bar.sol").open("w") as fp:
fp.write(CONTRACT.format(import_path))
newproject.load()
assert not newproject._path.joinpath("build/contracts/Foo.json").exists()
assert newproject._path.joinpath("build/contracts/Foo.json").exists()
assert not hasattr(newproject, "Foo")


Expand Down

0 comments on commit 615e538

Please sign in to comment.