fix control loop tests running at 50Hz
diff --git a/aos/common/controls/control_loop_test.h b/aos/common/controls/control_loop_test.h
index 14be01c..de048ba 100644
--- a/aos/common/controls/control_loop_test.h
+++ b/aos/common/controls/control_loop_test.h
@@ -4,6 +4,7 @@
#include "gtest/gtest.h"
#include "aos/common/queue_testutils.h"
+#include "aos/common/time.h"
namespace aos {
namespace testing {
@@ -24,6 +25,7 @@
private:
bool sent_robot_state_last_time_ = false;
+ ::aos::time::Time current_time_ = ::aos::time::Time::InSeconds(0);
::aos::common::testing::GlobalCoreInstance my_core;
};