From d827d433ce530ca558bc8a66a8b01d8a1d59aeb5 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Thu, 31 Mar 2022 02:19:40 +0800 Subject: [PATCH] util: Fixes typo in test_util_get_process_exec_path Signed-off-by: Yonggang Luo Reviewed-by: Jesse Natalie Part-of: --- src/util/tests/process_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/tests/process_test.c b/src/util/tests/process_test.c index 1a17ce78bdd..9a7708caf94 100644 --- a/src/util/tests/process_test.c +++ b/src/util/tests/process_test.c @@ -97,7 +97,7 @@ test_util_get_process_exec_path (void) if ((i > 0) && (strcmp(&build_path[i], ".exe") == 0)) build_path[i] = 0; #endif - expect_equal_str(build_path, path, "util_get_process_name"); + expect_equal_str(build_path, path, "test_util_get_process_exec_path"); free(build_path); }