diff options
author | chriseth <chris@ethereum.org> | 2017-03-06 19:24:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 19:24:55 +0800 |
commit | 5069c58a4be58d406585873a0d86852e17f9f89a (patch) | |
tree | 7f90018063258070030fe0dfdf64c1195224594b | |
parent | 2dac39b96b5a06e4c77e112cde560ff730fb3d50 (diff) | |
parent | eb363166ae3701aa37ae611df8c1e59b96ad0d31 (diff) | |
download | dexon-solidity-5069c58a4be58d406585873a0d86852e17f9f89a.tar.gz dexon-solidity-5069c58a4be58d406585873a0d86852e17f9f89a.tar.zst dexon-solidity-5069c58a4be58d406585873a0d86852e17f9f89a.zip |
Merge pull request #1735 from federicobond/fix-compilation
Fix compilation in OS X
-rw-r--r-- | test/RPCSession.cpp | 2 | ||||
-rw-r--r-- | test/RPCSession.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index be8774bc..f8b364d1 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -207,7 +207,7 @@ void RPCSession::personal_unlockAccount(string const& _address, string const& _p string RPCSession::personal_newAccount(string const& _password) { string addr = rpcCall("personal_newAccount", { quote(_password) }).asString(); - BOOST_MESSAGE("Created account " + addr); + BOOST_TEST_MESSAGE("Created account " + addr); return addr; } diff --git a/test/RPCSession.h b/test/RPCSession.h index 843036e1..b37cc322 100644 --- a/test/RPCSession.h +++ b/test/RPCSession.h @@ -30,6 +30,7 @@ #include <json/value.h> +#include <boost/noncopyable.hpp> #include <boost/test/unit_test.hpp> #include <string> |