diff --git a/tests/project/main/test_recompile.py b/tests/project/main/test_recompile.py index 925b1e28e..17a50a052 100644 --- a/tests/project/main/test_recompile.py +++ b/tests/project/main/test_recompile.py @@ -109,18 +109,6 @@ def test_modify_library(mockproject): ] -# modifying an interface should recompile a dependent contract -def test_modify_interface(mockproject): - code = INTERFACE.split("\n") - code[3] = "" - code = "\n".join(code) - with mockproject._path.joinpath("interfaces/IFoo.sol").open("w") as fp: - fp.write(code) - - mockproject.load() - assert sorted(mockproject._compile.call_args[0][0]) == ["contracts/Foo.sol"] - - # modifying a base contract should recompile a dependent def test_modify_base(mockproject): code = BASE_CONTRACT.split("\n") diff --git a/tests/project/test_sources.py b/tests/project/test_sources.py index 241ba9774..42f4b9366 100644 --- a/tests/project/test_sources.py +++ b/tests/project/test_sources.py @@ -42,7 +42,7 @@ def test_contract_interface_collisions(solc5source): def test_get_path_list(sourceobj): - assert sourceobj.get_path_list() == ["interfaces/Baz.vy", "path/to/Foo.sol"] + assert sourceobj.get_path_list() == ["path/to/Foo.sol"] def test_get_contract_list(sourceobj):