summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/src/power_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/drivers/src/power_common.c')
-rw-r--r--zephyr/test/drivers/src/power_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/zephyr/test/drivers/src/power_common.c b/zephyr/test/drivers/src/power_common.c
index 04250f6b77..d24537ba34 100644
--- a/zephyr/test/drivers/src/power_common.c
+++ b/zephyr/test/drivers/src/power_common.c
@@ -628,20 +628,20 @@ ZTEST(power_common_hibernation, test_power_cmd_hibernation_delay)
/* Test success on call without argument */
zassert_equal(EC_SUCCESS,
- shell_execute_cmd(shell_backend_uart_get_ptr(),
+ shell_execute_cmd(get_ec_shell(),
"hibdelay"),
NULL);
/* Test error on hibernation delay argument that is not a number */
zassert_equal(EC_ERROR_PARAM1,
- shell_execute_cmd(shell_backend_uart_get_ptr(),
+ shell_execute_cmd(get_ec_shell(),
"hibdelay test1"),
NULL);
/* Set hibernate delay */
h_delay = 3;
zassert_equal(EC_SUCCESS,
- shell_execute_cmd(shell_backend_uart_get_ptr(),
+ shell_execute_cmd(get_ec_shell(),
"hibdelay 3"),
NULL);