diff options
| -rw-r--r-- | source4/lib/registry/tests/registry.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tests/registry.c b/source4/lib/registry/tests/registry.c index e5e34c11e0..1780b4e772 100644 --- a/source4/lib/registry/tests/registry.c +++ b/source4/lib/registry/tests/registry.c @@ -428,7 +428,7 @@ static bool test_get_value(struct torture_context *tctx, void *_data)  	torture_assert_werr_ok(tctx, error, "getting value");  	torture_assert_int_equal(tctx, 4, data.length, "value length ok"); -	torture_assert(tctx, memcmp(data.data, &value, 4) == 0, +	torture_assert_mem_equal(tctx, data.data, &value, 4,  				    "value content ok");  	torture_assert_int_equal(tctx, REG_DWORD, type, "value type");  | 
