From dd89dc2c3166d4bbcb3aacfb7222488c69e10485 Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Sun, 21 Feb 2010 16:58:07 +1100 Subject: Spelling fixes for libutil MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Dieter Wallnöfer --- lib/util/tests/parmlist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/util/tests/parmlist.c') diff --git a/lib/util/tests/parmlist.c b/lib/util/tests/parmlist.c index 4b1d875715..c1bd69d2b0 100644 --- a/lib/util/tests/parmlist.c +++ b/lib/util/tests/parmlist.c @@ -59,8 +59,8 @@ static bool test_get(struct torture_context *tctx) torture_assert_str_equal(tctx, e->key, "bar", "key"); torture_assert_str_equal(tctx, e->value, "mystring", "value"); - e = parmlist_get(pctx, "nonexistant"); - torture_assert(tctx, e == NULL, "nonexistant"); + e = parmlist_get(pctx, "non-existent"); + torture_assert(tctx, e == NULL, "non-existent"); return true; } @@ -87,7 +87,7 @@ static bool test_get_string_list(struct torture_context *tctx) torture_assert_int_equal(tctx, str_list_length(ret), 2, "length"); torture_assert_str_equal(tctx, "true", ret[0], "ret[0]"); torture_assert_str_equal(tctx, "false", ret[1], "ret[1]"); - torture_assert(tctx, NULL == parmlist_get_string_list(pctx, "nonexistant", NULL), "nonexistant"); + torture_assert(tctx, NULL == parmlist_get_string_list(pctx, "non-existent", NULL), "non-existent"); return true; } -- cgit