From 13e425566611e9f299e56071bc072520a9e91947 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Mon, 9 Sep 2024 15:17:18 -0500 Subject: [PATCH] test: update solc --- tests/test_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_compiler.py b/tests/test_compiler.py index 852e2a5..18ade11 100644 --- a/tests/test_compiler.py +++ b/tests/test_compiler.py @@ -655,7 +655,7 @@ def test_compile_outputs_compiler_data_to_manifest(project, compiler): actual = project.manifest.compilers[0] assert actual.name == "solidity" assert "CompilesOnce" in actual.contractTypes - assert actual.version == "0.8.26+commit.8a97fa7a" + assert actual.version == "0.8.27+commit.40a35a09" # Compiling again should not add the same compiler again. _ = [c for c in compiler.compile((path,), project=project)] length_again = len(project.manifest.compilers or [])