diff options
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/fail_over-tests.c | 2 | ||||
-rw-r--r-- | server/tests/resolv-tests.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/fail_over-tests.c b/server/tests/fail_over-tests.c index 16cc60e3..c3e9dfe5 100644 --- a/server/tests/fail_over-tests.c +++ b/server/tests/fail_over-tests.c @@ -71,7 +71,7 @@ setup_test(void) fail("Could not init tevent context"); } - ret = resolv_init(ctx, ctx->ev, &ctx->resolv); + ret = resolv_init(ctx, ctx->ev, 5, &ctx->resolv); if (ret != EOK) { talloc_free(ctx); fail("Could not init resolv context"); diff --git a/server/tests/resolv-tests.c b/server/tests/resolv-tests.c index d6b8c4f3..0c18dfdc 100644 --- a/server/tests/resolv-tests.c +++ b/server/tests/resolv-tests.c @@ -73,7 +73,7 @@ static int setup_resolv_test(struct resolv_test_ctx **ctx) return EFAULT; } - ret = resolv_init(test_ctx, test_ctx->ev, &test_ctx->resolv); + ret = resolv_init(test_ctx, test_ctx->ev, 5, &test_ctx->resolv); if (ret != EOK) { fail("Could not init resolv context"); talloc_free(test_ctx); |