Skip to content

Commit 84d4c8a

Browse files
committed
bluetooth: controller: fix spelling of "exactly"
s/excactly/exactly/ Signed-off-by: Benjamin Cabé <[email protected]>
1 parent 67633f8 commit 84d4c8a

File tree

1 file changed

+8
-8
lines changed
  • tests/bluetooth/controller/ctrl_cis_create/src

1 file changed

+8
-8
lines changed

tests/bluetooth/controller/ctrl_cis_create/src/main.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ ZTEST(cis_create, test_cc_create_periph_rem_host_accept)
196196
/* Done */
197197
event_done(&conn);
198198

199-
/* There should be excactly one host notification */
199+
/* There should be exactly one host notification */
200200
ut_rx_node(NODE_CIS_REQUEST, &ntf, &cis_req);
201201
ut_rx_q_is_empty();
202202

@@ -264,7 +264,7 @@ ZTEST(cis_create, test_cc_create_periph_rem_host_accept)
264264
/* Prepare */
265265
event_prepare(&conn);
266266

267-
/* There should be excactly one host notification */
267+
/* There should be exactly one host notification */
268268
ut_rx_node(NODE_CIS_ESTABLISHED, &ntf, &cis_estab);
269269
ut_rx_q_is_empty();
270270

@@ -328,7 +328,7 @@ ZTEST(cis_create, test_cc_create_periph_rem_host_reject)
328328
/* Done */
329329
event_done(&conn);
330330

331-
/* There should be excactly one host notification */
331+
/* There should be exactly one host notification */
332332
ut_rx_node(NODE_CIS_REQUEST, &ntf, &cis_req);
333333
ut_rx_q_is_empty();
334334

@@ -409,7 +409,7 @@ ZTEST(cis_create, test_cc_create_periph_rem_host_accept_to)
409409
/* Done */
410410
event_done(&conn);
411411

412-
/* There should be excactly one host notification */
412+
/* There should be exactly one host notification */
413413
ut_rx_node(NODE_CIS_REQUEST, &ntf, &cis_req);
414414
ut_rx_q_is_empty();
415415

@@ -435,7 +435,7 @@ ZTEST(cis_create, test_cc_create_periph_rem_host_accept_to)
435435
/* Done */
436436
event_done(&conn);
437437

438-
/* There should be excactly one host notification */
438+
/* There should be exactly one host notification */
439439
ut_rx_node(NODE_CIS_ESTABLISHED, &ntf, &cis_estab);
440440
ut_rx_q_is_empty();
441441

@@ -579,7 +579,7 @@ ZTEST(cis_create, test_cc_create_central_rem_unsupported)
579579
/* Prepare */
580580
event_prepare(&conn);
581581

582-
/* There should be excactly one host notification
582+
/* There should be exactly one host notification
583583
* with status BT_HCI_ERR_UNSUPP_REMOTE_FEATURE
584584
*/
585585
ut_rx_node(NODE_CIS_ESTABLISHED, &ntf, &cis_estab);
@@ -737,7 +737,7 @@ ZTEST(cis_create, test_cc_create_central_rem_accept)
737737
/* Prepare */
738738
event_prepare(&conn);
739739

740-
/* There should be excactly one host notification */
740+
/* There should be exactly one host notification */
741741
ut_rx_node(NODE_CIS_ESTABLISHED, &ntf, &cis_estab);
742742
ut_rx_q_is_empty();
743743

@@ -846,7 +846,7 @@ ZTEST(cis_create, test_cc_create_central_rem_reject)
846846
/* Prepare */
847847
event_prepare(&conn);
848848

849-
/* There should be excactly one host notification */
849+
/* There should be exactly one host notification */
850850
ut_rx_node(NODE_CIS_ESTABLISHED, &ntf, &cis_estab);
851851
ut_rx_q_is_empty();
852852

0 commit comments

Comments
 (0)