spelling: coming

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 13:17:27 -05:00
parent d8ade6b665
commit 726d92f563
5 changed files with 6 additions and 6 deletions

View file

@ -142,7 +142,7 @@ void test_ancs_notifications__handle_phone_call_message(void) {
ancs_notifications_handle_message(37, properties, notif_attributes, app_attributes);
// We just processed an incomming phone call event, there better be a phone event scheduled!
// We just processed an incoming phone call event, there better be a phone event scheduled!
PebbleEvent event = fake_event_get_last();
cl_assert_equal_i(event.type, PEBBLE_PHONE_EVENT);

View file

@ -601,7 +601,7 @@ void test_sprintf__percent_n(void) {
snprintf(dstbuf, 256, "%n", &val);
cl_assert_equal_i(val, 0);
snprintf(dstbuf, 256, "Incredible mechanical monster%n comming soon%n!!", &val, &val2);
snprintf(dstbuf, 256, "Incredible mechanical monster%n coming soon%n!!", &val, &val2);
cl_assert_equal_i(val, 29);
cl_assert_equal_i(val2, 42);