diff options
author | Andrew Kroeger <andrew@id10ts.net> | 2009-09-25 15:10:40 -0500 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-30 16:02:14 +0200 |
commit | c5dba4a82eb9f6cc199d20489c89a7765504919d (patch) | |
tree | 20b4d3d2362d1858feb1f9992f631c434816f315 /lib | |
parent | 9e7fb6a673f9251f00425f7217ebcdf86a1ed42d (diff) | |
download | samba-c5dba4a82eb9f6cc199d20489c89a7765504919d.tar.gz samba-c5dba4a82eb9f6cc199d20489c89a7765504919d.tar.bz2 samba-c5dba4a82eb9f6cc199d20489c89a7765504919d.zip |
s4:torture: data_blob_hex_string() output is now lowercase.
Based on the change in commit fb84edabbe9f358031117de2cf78613c704ac600, these
tests needs to expect lowercase output.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/tests/data_blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/tests/data_blob.c b/lib/util/tests/data_blob.c index 875e5fdef8..f0b02b8d17 100644 --- a/lib/util/tests/data_blob.c +++ b/lib/util/tests/data_blob.c @@ -78,7 +78,7 @@ static bool test_cmp(struct torture_context *tctx) static bool test_hex_string(struct torture_context *tctx) { DATA_BLOB a = data_blob_string_const("\xC\xA\xF\xE"); - torture_assert_str_equal(tctx, data_blob_hex_string(tctx, &a), "0C0A0F0E", "hex string"); + torture_assert_str_equal(tctx, data_blob_hex_string(tctx, &a), "0c0a0f0e", "hex string"); return true; } |