diff options
Diffstat (limited to 'src/tests/sysdb-tests.c')
-rw-r--r-- | src/tests/sysdb-tests.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c index a5526280..c2e20c0a 100644 --- a/src/tests/sysdb-tests.c +++ b/src/tests/sysdb-tests.c @@ -145,14 +145,14 @@ static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) return ret; } - ret = sysdb_init_domain_and_sysdb(test_ctx, test_ctx->confdb, "local", - TESTS_PATH, - &test_ctx->domain, &test_ctx->sysdb); + ret = sssd_domain_init(test_ctx, test_ctx->confdb, "local", + TESTS_PATH, &test_ctx->domain); if (ret != EOK) { fail("Could not initialize connection to the sysdb (%d)", ret); talloc_free(test_ctx); return ret; } + test_ctx->sysdb = test_ctx->domain->sysdb; *ctx = test_ctx; return EOK; |