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 12:25:07 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2022-10-10 12:25:07 +0300
commitbd30b52fcc2ba1dbe24f04f37cc8af16389c3cdc (patch)
treee33eed28cdecb88680e36000cc9378c5ef1ab1f6 /tests
parent794bbf308e1039e16ed7aa3f4e3aa27e796d120d (diff)
.......... [DEV-2176] renamed SYSTEM_HW_CHASSIS()
Diffstat (limited to 'tests')
-rw-r--r--tests/libs/zbxsysinfo/linux/SYSTEM_HW_CHASSIS.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libs/zbxsysinfo/linux/SYSTEM_HW_CHASSIS.c b/tests/libs/zbxsysinfo/linux/SYSTEM_HW_CHASSIS.c
index a394c8e61e0..8f9a4fc98e6 100644
--- a/tests/libs/zbxsysinfo/linux/SYSTEM_HW_CHASSIS.c
+++ b/tests/libs/zbxsysinfo/linux/SYSTEM_HW_CHASSIS.c
@@ -44,9 +44,9 @@ void zbx_mock_test_entry(void **state)
if (SUCCEED != zbx_parse_item_key(param, &request))
fail_msg("Cannot parse item key: %s", param);
- if (expected_result != (actual_result = SYSTEM_HW_CHASSIS(&request, &result)))
+ if (expected_result != (actual_result = system_hw_chassis(&request, &result)))
{
- fail_msg("Unexpected return code from SYSTEM_HW_CHASSIS(): expected %s, got %s",
+ fail_msg("Unexpected return code from system_hw_chassis(): expected %s, got %s",
zbx_sysinfo_ret_string(expected_result), zbx_sysinfo_ret_string(actual_result));
}