diff options
Diffstat (limited to 'tests/indicator-fixture.h')
-rw-r--r-- | tests/indicator-fixture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/indicator-fixture.h b/tests/indicator-fixture.h index e725a50..aa191ae 100644 --- a/tests/indicator-fixture.h +++ b/tests/indicator-fixture.h @@ -272,9 +272,9 @@ class IndicatorFixture : public ::testing::Test return result; } - template <typename... Args> testing::AssertionResult expectEventuallyActionStateExists (Args&& ... args) { + template <typename... Args> testing::AssertionResult expectEventuallyActionExists (Args&& ... args) { std::function<testing::AssertionResult(void)> func = [&]() { - return expectActionStateExists(std::forward<Args>(args)...); + return expectActionExists(std::forward<Args>(args)...); }; return expectEventually(func); } |