diff options
Diffstat (limited to 'cpp/test/Ice/hold/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/hold/TestI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/hold/TestI.cpp b/cpp/test/Ice/hold/TestI.cpp index bd5200168e5..63015a458f9 100644 --- a/cpp/test/Ice/hold/TestI.cpp +++ b/cpp/test/Ice/hold/TestI.cpp @@ -15,12 +15,12 @@ HoldI::putOnHold(Ice::Int seconds, const Ice::Current& current) { if(seconds <= 0) { - current.adapter->hold(); - current.adapter->activate(); + current.adapter->hold(); + current.adapter->activate(); } else { - assert(false); // TODO + assert(false); // TODO } } |