Commit 12a65f73 authored by Rohan Garg's avatar Rohan Garg

Fix test-dribble

The ragent state can be either NICE_COMPONENT_CONNECTED or NICE_COMPONENT_READY
parent 7ae665e2
...@@ -381,7 +381,7 @@ int main (void) ...@@ -381,7 +381,7 @@ int main (void)
nice_agent_remove_stream (ragent, rs_id); nice_agent_remove_stream (ragent, rs_id);
priv_print_global_status (); priv_print_global_status ();
g_assert (global_lagent_state == NICE_COMPONENT_STATE_READY); g_assert (global_lagent_state == NICE_COMPONENT_STATE_READY);
g_assert (global_ragent_state == NICE_COMPONENT_STATE_READY); g_assert (global_ragent_state >= NICE_COMPONENT_STATE_CONNECTED);
/* note: verify that correct number of local candidates were reported */ /* note: verify that correct number of local candidates were reported */
g_assert (global_lagent_cands == 1); g_assert (global_lagent_cands == 1);
g_assert (global_ragent_cands == 1); g_assert (global_ragent_cands == 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment