aboutsummaryrefslogtreecommitdiff
path: root/pw_async/dispatcher_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pw_async/dispatcher_test.cc')
-rw-r--r--pw_async/dispatcher_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw_async/dispatcher_test.cc b/pw_async/dispatcher_test.cc
index b37a3aef6..dba072313 100644
--- a/pw_async/dispatcher_test.cc
+++ b/pw_async/dispatcher_test.cc
@@ -141,7 +141,7 @@ TEST(TestDispatcher, PeriodicTasks) {
TestPrimitives tp;
Task periodic_task([&tp]([[maybe_unused]] Context& c) { ++tp.count; });
- dispatcher.SchedulePeriodicTask(periodic_task, 20ms, dispatcher.Now() + 50ms);
+ dispatcher.SchedulePeriodicTask(periodic_task, 20ms, dispatcher.now() + 50ms);
// Cancel periodic task after it has run thrice, at +50ms, +70ms, and +90ms.
Task cancel_task(