summaryrefslogtreecommitdiff
path: root/tests/test-Sockets.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2012-04-03 08:46:21 -0700
committerPixel <pixel@nobis-crew.org>2012-04-03 08:46:21 -0700
commit37221dc091725c6fea09181b845308ab8f26c795 (patch)
treef877eb7f70f2f9ec021fd04720d7bd0c937dbab7 /tests/test-Sockets.cc
parent7d5f246ae7310055d39ea13ff395d830e3c27a60 (diff)
Reworking a bit the way the queues are working, and thus, the way the LuaTMainTask queue works.
Diffstat (limited to 'tests/test-Sockets.cc')
-rw-r--r--tests/test-Sockets.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-Sockets.cc b/tests/test-Sockets.cc
index a3e2755..c576c97 100644
--- a/tests/test-Sockets.cc
+++ b/tests/test-Sockets.cc
@@ -62,8 +62,8 @@ void MainTask::Do() {
Printer::enable(M_ALL);
Printer::log(M_STATUS, "Test::Sockets running.");
- Events::TaskEvent evtSvr(listener = Balau::createTask(new Listener<Worker>(1234)));
- Events::TaskEvent evtCln(Balau::createTask(new Client));
+ Events::TaskEvent evtSvr(listener = TaskMan::createTask(new Listener<Worker>(1234)));
+ Events::TaskEvent evtCln(TaskMan::createTask(new Client));
Printer::log(M_STATUS, "Created %s", listener->getName());
waitFor(&evtSvr);
waitFor(&evtCln);