1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 08:37:14 +02:00

Update POCO library.

This commit is contained in:
Sandu Liviu Catalin
2023-03-23 20:19:11 +02:00
parent 8d15f4b6e9
commit 233fc103f9
2521 changed files with 257092 additions and 72789 deletions

View File

@ -287,7 +287,7 @@ void RedisTest::testDECR()
try
{
Poco::Int64 result = _redis.execute<Poco::Int64>(decr);
_redis.execute<Poco::Int64>(decr);
fail("This must fail");
}
catch (RedisException& e)

View File

@ -24,7 +24,7 @@ int _tmain(int argc, wchar_t* argv[])
std::wcstombs(buffer, argv[i], sizeof(buffer));
args.push_back(std::string(buffer));
}
CppUnit::TestRunner runner;
CppUnit::TestRunner runner;
runner.addTest("RedisTestSuite", RedisTestSuite::suite());
return runner.run(args) ? 0 : 1;
}