Small cleanup in tests

This commit is contained in:
Martin Hořeňovský 2021-11-12 01:13:46 +01:00
parent 4d9bfb2951
commit 9b4e69333f
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ TEST_CASE( "toString on wchar_t returns the string contents", "[toString]" ) {
#endif // CATCH_CONFIG_WCHAR
TEST_CASE( "long long" ) {
long long l = std::numeric_limits<long long>::max();
constexpr long long l = std::numeric_limits<long long>::max();
REQUIRE( l == std::numeric_limits<long long>::max() );
}