remove xfail from passing test, test_initial_version_exists_for_locals

pull/1755/head
alpharush 2 years ago
parent 9f56a91f73
commit b16bb7079f
  1. 5
      tests/test_features.py
  2. 1
      tests/test_ssa_generation.py

@ -27,9 +27,8 @@ def _run_all_detectors(slither: Slither) -> None:
hardhat_available = shutil.which("hardhat") is not None
@pytest.mark.skipif(
not hardhat_available, reason="requires Hardhat and project setup"
)
@pytest.mark.skipif(not hardhat_available, reason="requires Hardhat and project setup")
def test_node() -> None:
# hardhat must have been installed in tests/test_node_modules
# For the CI its done through the github action config

@ -585,7 +585,6 @@ def test_storage_refers_to():
assert phinodes[1].lvalue in entryphi[0].rvalues or entryphi[1].rvalues
@pytest.mark.xfail(strict=True, reason="Fails in current slither version. Fix in #1102.")
@pytest.mark.skipif(
not valid_version("0.4.0"), reason="Solidity version 0.4.0 not available on this platform"
)

Loading…
Cancel
Save