diff --git a/examples/tests.sol b/sol/tests.sol similarity index 100% rename from examples/tests.sol rename to sol/tests.sol diff --git a/src/compiler.js b/src/compiler.js index 388f76ccb5..011968324b 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -12,7 +12,7 @@ function compileAll(cb) { let compiler; const sources = { "simple_storage.sol": {content: fs.readFileSync("examples/simple_storage.sol").toString()}, - "tests.sol": {content: fs.readFileSync("examples/tests.sol").toString()}, + "tests.sol": {content: fs.readFileSync("sol/tests.sol").toString()}, "simple_storage_test.sol": {content: fs.readFileSync("examples/simple_storage_test.sol").toString()} };