aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/RPCSession.cpp2
-rw-r--r--test/RPCSession.h1
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>