Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-10-10 15:03:37 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-10-10 15:03:37 +0300
commitf1a9c2f0ca21053b04c171e450633ddacc43d556 (patch)
tree6c4b8f6453463f54f53240e15523ce59bd00d406 /tests
parentbb7d0d28dfc614908650a09fa1facc4134c8cf6b (diff)
.......... [DEV-2176] renamed VFS_FS_DISCOVERY()
Diffstat (limited to 'tests')
-rw-r--r--tests/libs/zbxsysinfo/linux/VFS_FS_DISCOVERY.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libs/zbxsysinfo/linux/VFS_FS_DISCOVERY.c b/tests/libs/zbxsysinfo/linux/VFS_FS_DISCOVERY.c
index 571d521b4d6..f76014892dc 100644
--- a/tests/libs/zbxsysinfo/linux/VFS_FS_DISCOVERY.c
+++ b/tests/libs/zbxsysinfo/linux/VFS_FS_DISCOVERY.c
@@ -71,9 +71,9 @@ void zbx_mock_test_entry(void **state)
zbx_init_agent_request(&request);
zbx_init_agent_result(&result);
- if (expected_result != (actual_result = VFS_FS_DISCOVERY(&request, &result)))
+ if (expected_result != (actual_result = vfs_fs_discovery(&request, &result)))
{
- fail_msg("Unexpected return code from VFS_FS_DISCOVERY(): expected %s, got %s",
+ fail_msg("Unexpected return code from vfs_fs_discovery(): expected %s, got %s",
zbx_sysinfo_ret_string(expected_result), zbx_sysinfo_ret_string(actual_result));
}