fixes for ClockService::clock_type -> RestrictedInt change introduced by last commit
[senf.git] / senf / Scheduler / TimerEventProxy.test.cc
index 60002a3..73e9fd4 100644 (file)
@@ -75,7 +75,7 @@ SENF_AUTO_UNIT_TEST(timerEventProxy)
         timers.add( now + ClockService::milliseconds(200), 1, &handler);
         BOOST_CHECK( timers.remove( 4));
         BOOST_CHECK(! timers.remove( 4));
-        BOOST_CHECK_EQUAL( timers.timeout(4), SENF_INT2CLOCKTYPE(0));
+        BOOST_CHECK_EQUAL( timers.timeout(4), ClockService::clock_type(0));
         timers.add( now + ClockService::milliseconds(700), 2, &handler);
 
         BOOST_CHECK_EQUAL( timers.timeout(1), now + ClockService::milliseconds(200));