summaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/frt/method_pt/method_pt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/tests/frt/method_pt/method_pt.cpp')
-rw-r--r--fnet/src/tests/frt/method_pt/method_pt.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/fnet/src/tests/frt/method_pt/method_pt.cpp b/fnet/src/tests/frt/method_pt/method_pt.cpp
index 2ac706369ae..d6c42ef7790 100644
--- a/fnet/src/tests/frt/method_pt/method_pt.cpp
+++ b/fnet/src/tests/frt/method_pt/method_pt.cpp
@@ -174,7 +174,7 @@ void finiTest() {
delete _complexHandler;
delete _mediumHandler;
delete _simpleHandler;
- _target->SubRef();
+ _target->internal_subref();
_server.reset();
}
@@ -187,7 +187,7 @@ TEST("method pt") {
//-------------------------------- MEDIUM
- req->SubRef();
+ req->internal_subref();
req = FRT_Supervisor::AllocRPCRequest();
req->SetMethodName("mediumMethod");
_target->InvokeSync(req, 60.0);
@@ -195,7 +195,7 @@ TEST("method pt") {
//-------------------------------- COMPLEX
- req->SubRef();
+ req->internal_subref();
req = FRT_Supervisor::AllocRPCRequest();
req->SetMethodName("complexMethod");
_target->InvokeSync(req, 60.0);
@@ -213,7 +213,7 @@ TEST("method pt") {
fprintf(stderr, "Object inheritance NOT ok for method handlers\n");
}
- req->SubRef();
+ req->internal_subref();
}
//-------------------------------------------------------------