summaryrefslogtreecommitdiff
path: root/indra/newview/tests
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-08-12 08:26:51 -0400
committerNat Goodspeed <nat@lindenlab.com>2019-08-12 08:26:51 -0400
commitf0fa4f94a5400fe5d21cf5bf7570129916bf9787 (patch)
tree4b9ac64f2258dc6713eba0c5a793ec11965000e3 /indra/newview/tests
parentadb3f447b33e42bdb6e4a5a1ac79eebd862dafb4 (diff)
DRTVWR-493: Make catch_llerrs() a member of WrapLLErrs.
Diffstat (limited to 'indra/newview/tests')
-rw-r--r--indra/newview/tests/llxmlrpclistener_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/tests/llxmlrpclistener_test.cpp b/indra/newview/tests/llxmlrpclistener_test.cpp
index f9a4ec373a..dbaae7280c 100644
--- a/indra/newview/tests/llxmlrpclistener_test.cpp
+++ b/indra/newview/tests/llxmlrpclistener_test.cpp
@@ -88,7 +88,7 @@ namespace tut
WrapLLErrs capture;
LLSD request;
request["uri"] = uri;
- std::string threw = catch_llerrs([&pumps, &request](){
+ std::string threw = capture.catch_llerrs([&pumps, &request](){
pumps.obtain("LLXMLRPCTransaction").post(request);
});
ensure_contains("threw exception", threw, "missing params");
@@ -107,7 +107,7 @@ namespace tut
request["reply"] = "reply";
LLSD& params(request["params"]);
params["who"]["specifically"] = "world"; // LLXMLRPCListener only handles scalar params
- std::string threw = catch_llerrs([&pumps, &request](){
+ std::string threw = capture.catch_llerrs([&pumps, &request](){
pumps.obtain("LLXMLRPCTransaction").post(request);
});
ensure_contains("threw exception", threw, "unknown type");