From 477c38bf36d0b06251235ae36b8df29b71d6c0ba Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 1 Feb 2018 17:23:10 -0500 Subject: [PATCH] move tests lib to a separate folder --- {examples => sol}/tests.sol | 0 src/compiler.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {examples => sol}/tests.sol (100%) 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()} };