Skip to content

Commit 0911f0c

Browse files
committed
tests: fix mypy lint error
1 parent 0cba0d6 commit 0911f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_compiler_versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def test_solc_080(self, test_contracts_dir: Any, isolated_solc_data: Any) -> Non
103103
f"solc080_fail_compile did not fail as expected. Output: {result.stdout}"
104104
)
105105

106-
def test_solc_0831_if_contains_prerelease(self, test_contracts_dir, isolated_solc_data):
107-
"""Test Solidity 0.8.31 compilation behavior."""
106+
def test_solc_0831_prerelease(self, isolated_solc_data: Any) -> None:
107+
"""Test Solidity 0.8.31 compilation behavior (first version with prerelease)."""
108108
# Switch to 0.8.31
109109
result = run_command("solc-select use 0.8.31 --always-install", check=False)
110110
assert result.returncode == 0, f"Failed to switch to 0.8.31: {result.stdout}"

0 commit comments

Comments
 (0)