diff options
-rw-r--r-- | test/RPCSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index 44d21d69..f67696d9 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -302,7 +302,7 @@ Json::Value RPCSession::rpcCall(string const& _methodName, vector<string> const& //cout << "Reply: " << reply << endl; Json::Value result; - Json::Reader().parse(reply, result, false); + BOOST_REQUIRE(Json::Reader().parse(reply, result, false)); if (result.isMember("error")) { |