util: Fixes typo in test_util_get_process_exec_path

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16723>
This commit is contained in:
Yonggang Luo 2022-03-31 02:19:40 +08:00 committed by Marge Bot
parent aa7446b17e
commit d827d433ce

View file

@ -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);
}