File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ tape('Compilation', function (t) {
96
96
} ) ;
97
97
98
98
t . test ( 'multiple files can be compiled (using lowlevel API)' , function ( st ) {
99
- // Introduced in 0.1.6
99
+ // < 0.1.6 doesn't have this
100
100
if ( typeof solc . lowlevel . compileMulti !== 'function' ) {
101
101
st . skip ( 'Low-level compileMulti interface not implemented by this compiler version.' ) ;
102
102
st . end ( ) ;
@@ -118,7 +118,7 @@ tape('Compilation', function (t) {
118
118
} ) ;
119
119
120
120
t . test ( 'lazy-loading callback works (using lowlevel API)' , function ( st ) {
121
- // Introduced in 0.2.1
121
+ // < 0.2.1 doesn't have this
122
122
if ( typeof solc . lowlevel . compileCallback !== 'function' ) {
123
123
st . skip ( 'Low-level compileCallback interface not implemented by this compiler version.' ) ;
124
124
st . end ( ) ;
@@ -397,8 +397,8 @@ tape('Compilation', function (t) {
397
397
} ) ;
398
398
399
399
t . test ( 'compiling standard JSON (with imports)' , function ( st ) {
400
- // <0.1.6 doesn't have this
401
- if ( ! solc . features . multipleInputs ) {
400
+ // <0.2.1 doesn't have this
401
+ if ( ! solc . features . importCallback ) {
402
402
st . skip ( 'Not supported by solc' ) ;
403
403
st . end ( ) ;
404
404
return ;
You can’t perform that action at this time.
0 commit comments