summaryrefslogtreecommitdiff
path: root/zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c')
-rw-r--r--zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c b/zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c
index 993c6e680c..d059870f25 100644
--- a/zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c
+++ b/zephyr/test/drivers/ap_mux_control/src/ap_mux_control.c
@@ -3,12 +3,12 @@
* found in the LICENSE file.
*/
+#include <zephyr/ztest.h>
+
+#include "usb_mux.h"
#include "test/drivers/stubs.h"
#include "test/drivers/test_state.h"
#include "test/drivers/utils.h"
-#include "usb_mux.h"
-
-#include <zephyr/ztest.h>
static void ap_mux_control_before(void *data)
{
@@ -23,7 +23,7 @@ static void ap_mux_control_before(void *data)
k_sleep(K_SECONDS(1));
/* And test the assumption that setting NONE worked */
- zassert_equal(usb_mux_get(USBC_PORT_C0), USB_PD_MUX_NONE,
+ zassume_equal(usb_mux_get(USBC_PORT_C0), USB_PD_MUX_NONE,
"Failed to set mux to initial state");
}