call: Remove waiting state

The waiting state is not used any more and made wrong assumptions to
begin with, so let's get rid of it.
This commit is contained in:
Evangelos Ribeiro Tzaras
2022-08-05 11:15:25 +02:00
parent 4b99660e3f
commit 8a928f2008
3 changed files with 0 additions and 4 deletions

View File

@@ -33,8 +33,6 @@ test_cui_call_state_mapping (void)
==, CUI_CALL_STATE_CALLING);
g_assert_cmpint (calls_call_state_to_cui_call_state (CALLS_CALL_STATE_INCOMING),
==, CUI_CALL_STATE_INCOMING);
g_assert_cmpint (calls_call_state_to_cui_call_state (CALLS_CALL_STATE_WAITING),
==, CUI_CALL_STATE_INCOMING);
g_assert_cmpint (calls_call_state_to_cui_call_state (CALLS_CALL_STATE_DISCONNECTED),
==, CUI_CALL_STATE_DISCONNECTED);
g_assert_cmpint (calls_call_state_to_cui_call_state (42), ==, CUI_CALL_STATE_UNKNOWN);