From 821c67ee4661a53c8122832107f6d3952f015bdd Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Mon, 30 Mar 2020 21:28:59 +0200 Subject: [PATCH] fixed test --- test/webfuse/tests/provider/operation/test_lookup.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/webfuse/tests/provider/operation/test_lookup.cc b/test/webfuse/tests/provider/operation/test_lookup.cc index 32d98eb..4cbccd4 100644 --- a/test/webfuse/tests/provider/operation/test_lookup.cc +++ b/test/webfuse/tests/provider/operation/test_lookup.cc @@ -86,7 +86,7 @@ TEST(wfp_impl_lookup, fail_invalid_name_type) json_t * params = json_array(); json_array_append_new(params, json_string("test.filesystem")); - json_array_append_new(params, json_string("23")); + json_array_append_new(params, json_integer(23)); json_array_append_new(params, json_integer(1)); wfp_impl_lookup(&context, params, 42);