diff options
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/sysdb-tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/sysdb-tests.c b/server/tests/sysdb-tests.c index f809f554..cd357985 100644 --- a/server/tests/sysdb-tests.c +++ b/server/tests/sysdb-tests.c @@ -33,7 +33,7 @@ struct sysdb_test_ctx { struct sysdb_ctx *sysdb; struct confdb_ctx *confdb; - struct event_context *ev; + struct tevent_context *ev; }; static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) @@ -51,7 +51,7 @@ static int setup_sysdb_tests(struct sysdb_test_ctx **ctx) /* Create an event context * It will not be used except in confdb_init and sysdb_init */ - test_ctx->ev = event_context_init(test_ctx); + test_ctx->ev = tevent_context_init(test_ctx); if (test_ctx->ev == NULL) { fail("Could not create event context"); talloc_free(test_ctx); |