@@ -296,7 +296,7 @@ def test_get_version_map_version_specified_in_config_file(compiler):
296
296
297
297
298
298
def test_get_version_map_raises_on_non_solidity_sources (project , compiler ):
299
- path = project .sources . lookup ( "contracts/ RandomVyperFile.vy")
299
+ path = project .contracts_folder / " RandomVyperFile.vy"
300
300
with raises_because_not_sol :
301
301
compiler .get_version_map ((path ,), project = project )
302
302
@@ -480,7 +480,7 @@ def test_compile_only_returns_contract_types_for_inputs(project, compiler):
480
480
481
481
482
482
def test_compile_vyper_contract (project , compiler ):
483
- path = project .sources . lookup ( "contracts/ RandomVyperFile.vy")
483
+ path = project .contracts_folder / " RandomVyperFile.vy"
484
484
with raises_because_not_sol :
485
485
_ = [c for c in compiler .compile ((path ,), project = project )]
486
486
@@ -596,7 +596,7 @@ def test_compile_outputs_compiler_data_to_manifest(project, compiler):
596
596
actual = project .manifest .compilers [0 ]
597
597
assert actual .name == "solidity"
598
598
assert "CompilesOnce" in actual .contractTypes
599
- assert actual .version == "0.8.25 +commit.b61c2a91 "
599
+ assert actual .version == "0.8.26 +commit.8a97fa7a "
600
600
# Compiling again should not add the same compiler again.
601
601
_ = [c for c in compiler .compile ((path ,), project = project )]
602
602
length_again = len (project .manifest .compilers or [])
0 commit comments