From 55d7bd2499009944865331d13901eb9311223f5f Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Sat, 22 Feb 2020 20:03:49 -0500 Subject: [PATCH] Fix test --- test/static_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/static_string.cpp b/test/static_string.cpp index bf165cb..874aee4 100644 --- a/test/static_string.cpp +++ b/test/static_string.cpp @@ -3687,7 +3687,7 @@ testToStaticString() BOOST_TEST(testTS(0xffffffff, "4294967295", L"4294967295", true)); BOOST_TEST(testTS(-65535, "-65535", L"-65535", true)); BOOST_TEST(testTS(-65536, "-65536", L"-65536", true)); - BOOST_TEST(testTS(-4294967295, "-4294967295", L"-4294967295", true)); + BOOST_TEST(testTS(-4294967295ll, "-4294967295", L"-4294967295", true)); std::cout << "3691: " << to_static_string(-4294967295) << '\n'; std::wcout << "3691: " << to_static_wstring(-4294967295) << '\n'; BOOST_TEST(testTS(1, "1", L"1", true));