From ee39b90eee1b1c21218c15b3bc484485f8362227 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Fri, 1 Nov 2024 15:56:26 -0500 Subject: [PATCH] test: missing project= --- tests/functional/test_compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_compilers.py b/tests/functional/test_compilers.py index 58db5f44b8..5e9ed7ac2c 100644 --- a/tests/functional/test_compilers.py +++ b/tests/functional/test_compilers.py @@ -77,7 +77,7 @@ def test_compile(compilers, project_with_contract, factory): Testing both stringified paths and path-object paths. """ path = next(iter(project_with_contract.sources.paths)) - actual = compilers.compile((factory(path),)) + actual = compilers.compile((factory(path),), project=project_with_contract) contract_name = path.stem assert contract_name in [x.name for x in actual]