diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-11 14:33:31 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-11 14:33:31 +0100 |
commit | dfa8ffbc03c4c1acd74fd14e54c6ee566a3c445c (patch) | |
tree | 262991f97b02e721c46f767eab7250898fe1a566 /src/test/LoopTimerTest.cpp | |
parent | 68bf20b491b4b7673c2ece7a6497b9faffd44eb1 (diff) |
make format
Diffstat (limited to 'src/test/LoopTimerTest.cpp')
-rw-r--r-- | src/test/LoopTimerTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/LoopTimerTest.cpp b/src/test/LoopTimerTest.cpp index 1216e5e..e4f8477 100644 --- a/src/test/LoopTimerTest.cpp +++ b/src/test/LoopTimerTest.cpp @@ -68,8 +68,8 @@ TEST_F(LoopTimerTest, getCurrentTime) { auto end_time = steady_clock::now(); // Get the elapsed time in seconds as a double - auto elapsed_time = std::chrono::duration_cast<ElapsedTime_t>(end_time - start_time).count(); - + auto elapsed_time + = std::chrono::duration_cast<ElapsedTime_t>(end_time - start_time).count(); ASSERT_NEAR(loop_timer.get_elapsed_time().count(), elapsed_time, 5); } |