diff --git a/modules/beast_core/diagnostic/beast_UnitTest.h b/modules/beast_core/diagnostic/beast_UnitTest.h index 656ce7ae1..41f7215d3 100644 --- a/modules/beast_core/diagnostic/beast_UnitTest.h +++ b/modules/beast_core/diagnostic/beast_UnitTest.h @@ -253,8 +253,8 @@ public: /** Compares two values, and if they don't match, prints out a message containing the expected and actual result values. */ - template - void expectEquals (ValueType actual, ValueType expected, String failureMessage = String::empty) + template + void expectEquals (ActualType actual, ExpectedType expected, String failureMessage = String::empty) { const bool result = (actual == expected);