@@ -2678,7 +2678,7 @@ fn can_create_standard_json_input_with_external_file() {
2678
2678
]
2679
2679
) ;
2680
2680
2681
- let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 24 ) ) . unwrap ( ) ;
2681
+ let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 27 ) ) . unwrap ( ) ;
2682
2682
2683
2683
// can compile using the created json
2684
2684
let compiler_errors = solc
@@ -2703,7 +2703,7 @@ fn can_compile_std_json_input() {
2703
2703
assert ! ( input. sources. contains_key( Path :: new( "lib/ds-test/src/test.sol" ) ) ) ;
2704
2704
2705
2705
// should be installed
2706
- if let Ok ( solc) = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 24 ) ) {
2706
+ if let Ok ( solc) = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 28 ) ) {
2707
2707
let out = solc. compile ( & input) . unwrap ( ) ;
2708
2708
assert ! ( out. errors. is_empty( ) ) ;
2709
2709
assert ! ( out. sources. contains_key( Path :: new( "lib/ds-test/src/test.sol" ) ) ) ;
@@ -2767,7 +2767,7 @@ fn can_create_standard_json_input_with_symlink() {
2767
2767
]
2768
2768
) ;
2769
2769
2770
- let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 24 ) ) . unwrap ( ) ;
2770
+ let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 28 ) ) . unwrap ( ) ;
2771
2771
2772
2772
// can compile using the created json
2773
2773
let compiler_errors = solc
@@ -2936,7 +2936,7 @@ async fn can_install_solc_and_compile_std_json_input_async() {
2936
2936
tmp. assert_no_errors ( ) ;
2937
2937
let source = tmp. list_source_files ( ) . into_iter ( ) . find ( |p| p. ends_with ( "Dapp.t.sol" ) ) . unwrap ( ) ;
2938
2938
let input = tmp. project ( ) . standard_json_input ( & source) . unwrap ( ) ;
2939
- let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 24 ) ) . unwrap ( ) ;
2939
+ let solc = Solc :: find_or_install ( & Version :: new ( 0 , 8 , 27 ) ) . unwrap ( ) ;
2940
2940
2941
2941
assert ! ( input. settings. remappings. contains( & "ds-test/=lib/ds-test/src/" . parse( ) . unwrap( ) ) ) ;
2942
2942
let input: SolcInput = input. into ( ) ;
0 commit comments