diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp index 42964bf2fd321aef6a17e091ec57e68df91bf8c4..1539ec6d84e2de91c88965fc49fb7a93d52fd9c3 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp @@ -364,7 +364,7 @@ struct MicroBenchmarkIter { concept ::exists<call_with_input_t, Callable, Input>; static inline void iter(const Callable& iteration, const Input* input) { static_assert(is_callable, - "Gave callable that is not callable without input"); + "Gave callable that is not callable with input"); if constexpr (is_callable) { using Result = std::invoke_result_t<Callable, const Input&>; MicroBenchmarkIterImpl<Callable, Input, Result>::iter(iteration, *input); @@ -380,7 +380,7 @@ struct MicroBenchmarkIter<Callable, void> { concept ::exists<call_without_input_t, Callable>; static inline void iter(const Callable& iteration, const void* = nullptr) { - static_assert(is_callable, "Gave callable that is not callable with input"); + static_assert(is_callable, "Gave callable that is not callable without input"); if constexpr (is_callable) { using Result = std::invoke_result_t<Callable>; MicroBenchmarkIterImpl<Callable, void, Result>::iter(iteration);