summaryrefslogtreecommitdiffstats
path: root/src/tests/cmocka
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-06-23 18:07:51 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-07-01 11:43:29 +0200
commit3b28d617f9af28e002b1d0a63faa90ef9e23e2ef (patch)
tree950ee3bf715755f1e766c6abd59c4f87b3577d25 /src/tests/cmocka
parent9339e19aa015a7a32791cb94f92d1656361c6662 (diff)
downloadsssd-3b28d617f9af28e002b1d0a63faa90ef9e23e2ef.tar.gz
sssd-3b28d617f9af28e002b1d0a63faa90ef9e23e2ef.tar.xz
sssd-3b28d617f9af28e002b1d0a63faa90ef9e23e2ef.zip
TESTS: Fix group search base
After fixing the confdb initialization I realized the group DN couldn't be parsed. This patch fixes that. Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Diffstat (limited to 'src/tests/cmocka')
-rw-r--r--src/tests/cmocka/test_nested_groups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/cmocka/test_nested_groups.c b/src/tests/cmocka/test_nested_groups.c
index 9f38e3dd3..bf678c2b2 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;