From a69ab7c70c2cf753d0a3c609eb1b0288effcf72f Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Thu, 6 May 2021 10:56:45 +0200 Subject: [PATCH] tests: Fix context for the asn1 test --- src/tests/unittests/asn1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/unittests/asn1.c b/src/tests/unittests/asn1.c index 5f5d4ea3..799722cc 100644 --- a/src/tests/unittests/asn1.c +++ b/src/tests/unittests/asn1.c @@ -241,7 +241,7 @@ static int setup_sc_context(void **state) sc_context_t *ctx = NULL; int rv; - rv = sc_establish_context(&ctx, "fuzz"); + rv = sc_establish_context(&ctx, "asn1"); assert_non_null(ctx); assert_int_equal(rv, SC_SUCCESS);