MXS-2727 Fix test-program

This commit is contained in:
Johan Wikman
2019-11-13 13:06:07 +02:00
parent 80ce599cf8
commit 0ec505b301

View File

@ -91,7 +91,8 @@ int mxs_2727()
result = pCache->put_value(key, pValue); result = pCache->put_value(key, pValue);
gwbuf_free(pValue); gwbuf_free(pValue);
if (!CACHE_RESULT_IS_OK(result)) // Expected to fail, as the value does not fit into the cache.
if (CACHE_RESULT_IS_OK(result))
{ {
return 1; return 1;
} }