summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/thread/AliveTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/test/IceE/thread/AliveTest.cpp')
-rw-r--r--cppe/test/IceE/thread/AliveTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/test/IceE/thread/AliveTest.cpp b/cppe/test/IceE/thread/AliveTest.cpp
index 4a7773b3847..0815c5fba04 100644
--- a/cppe/test/IceE/thread/AliveTest.cpp
+++ b/cppe/test/IceE/thread/AliveTest.cpp
@@ -92,8 +92,8 @@ AliveTest::run()
AliveTestThreadPtr t = new AliveTestThread(childCreated, parentReady);
IceUtil::ThreadControl c = t->start();
childCreated.waitForSignal();
- test(c.isAlive());
+ test(t->isAlive());
parentReady.signal();
c.join();
- test(!c.isAlive());
+ test(!t->isAlive());
}