Skip to content

Commit 55d6ff7

Browse files
committed
Fix abstract contract test
1 parent 2f194b9 commit 55d6ff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ function runTests (solc, versionText) {
525525
},
526526
'sources': {
527527
'cont.sol': {
528-
'content': (isVersion6 ? 'abstract' : '') + 'contract C { function f() public; }'
528+
'content': (isVersion6 ? 'abstract ' : '') + 'contract C { function f() public; }'
529529
}
530530
}
531531
};

0 commit comments

Comments
 (0)