From 3b28d617f9af28e002b1d0a63faa90ef9e23e2ef Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mon, 23 Jun 2014 18:07:51 +0200 Subject: TESTS: Fix group search base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After fixing the confdb initialization I realized the group DN couldn't be parsed. This patch fixes that. Reviewed-by: Lukáš Slebodník --- src/tests/cmocka/test_nested_groups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tests/cmocka/test_nested_groups.c b/src/tests/cmocka/test_nested_groups.c index 9f38e3dd..bf678c2b 100644 --- a/src/tests/cmocka/test_nested_groups.c +++ b/src/tests/cmocka/test_nested_groups.c @@ -43,7 +43,7 @@ /* put users and groups under the same container so we can easily run the * same tests cases for several search base scenarios */ #define OBJECT_BASE_DN "cn=objects,dc=test,dc=com" -#define GROUP_BASE_DN "cn=groups" OBJECT_BASE_DN +#define GROUP_BASE_DN "cn=groups," OBJECT_BASE_DN struct nested_groups_test_ctx { struct sss_test_ctx *tctx; -- cgit