diff options
author | Jose <jose@zeroc.com> | 2019-06-27 16:46:30 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-06-27 16:46:30 +0200 |
commit | d017d921ab7fe25744faf63e937a05982334665d (patch) | |
tree | 0d60178b3699cedb09de96e0577263866fc12fe2 /cpp/test/Ice/ami/TestI.cpp | |
parent | Fix typo in C# optionals test - Close #386 (diff) | |
download | ice-d017d921ab7fe25744faf63e937a05982334665d.tar.bz2 ice-d017d921ab7fe25744faf63e937a05982334665d.tar.xz ice-d017d921ab7fe25744faf63e937a05982334665d.zip |
Minor fix for Ice/ami test - Close #395
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index 20317379558..7c1debb2722 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -80,7 +80,7 @@ TestIntfI::waitForBatch(Ice::Int count, const Ice::Current&) IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this); while(_batchCount < count) { - timedWait(IceUtil::Time::milliSeconds(5000)); + test(timedWait(IceUtil::Time::milliSeconds(5000))); } bool result = count == _batchCount; _batchCount = 0; |