Merge pull request #1569 from fulldecent/patch-2

Fix compile warning, follow Solidity code style
pull/3094/head
yann300 6 years ago committed by GitHub
commit 0ea58d3ea3
  1. 8
      src/app/tabs/test-tab.js

@ -199,8 +199,8 @@ import "remix_tests.sol"; // this import is automatically injected by Remix.
// file name has to end with '_test.sol'
contract test_1 {
function beforeAll () {
// here should instanciate tested contract
function beforeAll() public {
// here should instantiate tested contract
}
function check1() public {
@ -217,8 +217,8 @@ contract test_1 {
contract test_2 {
function beforeAll () {
// here should instanciate tested contract
function beforeAll() public {
// here should instantiate tested contract
}
function check1() public {

Loading…
Cancel
Save