From 5e0f122f7c00c7ba76a5f550c67ca31e5bea9aae Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 5 Jun 2009 12:13:25 +0200 Subject: nss_wrapper: rename test_nwrap_env to test_nwrap_enumeration in testsuite. Guenther --- lib/nss_wrapper/testsuite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/nss_wrapper') diff --git a/lib/nss_wrapper/testsuite.c b/lib/nss_wrapper/testsuite.c index c1b6e9ebbf..57c61f6d18 100644 --- a/lib/nss_wrapper/testsuite.c +++ b/lib/nss_wrapper/testsuite.c @@ -471,7 +471,7 @@ static bool test_nwrap_membership(struct torture_context *tctx) return true; } -static bool test_nwrap_env(struct torture_context *tctx) +static bool test_nwrap_enumeration(struct torture_context *tctx) { const char *old_pwd = getenv("NSS_WRAPPER_PASSWD"); const char *old_group = getenv("NSS_WRAPPER_GROUP"); @@ -493,7 +493,7 @@ struct torture_suite *torture_local_nss_wrapper(TALLOC_CTX *mem_ctx) { struct torture_suite *suite = torture_suite_create(mem_ctx, "NSS-WRAPPER"); - torture_suite_add_simple_test(suite, "env", test_nwrap_env); + torture_suite_add_simple_test(suite, "enumeration", test_nwrap_enumeration); torture_suite_add_simple_test(suite, "membership", test_nwrap_membership); return suite; -- cgit