From 818083e7059180f38a4a294e80f851967e1588f8 Mon Sep 17 00:00:00 2001 From: Federico Bond Date: Fri, 3 Mar 2017 11:47:05 -0300 Subject: Replace deprecated BOOST_MESSAGE with BOOST_TEST_MESSAGE --- test/RPCSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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; } -- cgit v1.2.3 From 9409edb409c0bfe9e2d941c9939537d9e8b8335b Mon Sep 17 00:00:00 2001 From: Federico Bond Date: Fri, 3 Mar 2017 11:47:22 -0300 Subject: Add missing header for boost::noncopyable --- test/RPCSession.h | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/RPCSession.h b/test/RPCSession.h index 843036e1..0acd982f 100644 --- a/test/RPCSession.h +++ b/test/RPCSession.h @@ -30,6 +30,7 @@ #include +#include #include #include -- cgit v1.2.3 From eb363166ae3701aa37ae611df8c1e59b96ad0d31 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 3 Mar 2017 18:30:36 +0100 Subject: Fix header. --- test/RPCSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/RPCSession.h b/test/RPCSession.h index 0acd982f..b37cc322 100644 --- a/test/RPCSession.h +++ b/test/RPCSession.h @@ -30,7 +30,7 @@ #include -#include +#include #include #include -- cgit v1.2.3