mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-05 19:15:32 +00:00
test: sip: Don't use DNS lookups
Otherwise build servers might not be happy.
This commit is contained in:
parent
0389137df3
commit
1593dd299b
1 changed files with 2 additions and 2 deletions
|
@ -263,13 +263,13 @@ test_sip_call_direct_calls (SipFixture *fixture,
|
|||
g_object_get (fixture->origin_alice,
|
||||
"local-port", &local_port_alice,
|
||||
NULL);
|
||||
address_alice = g_strdup_printf ("sip:alice@localhost:%d",
|
||||
address_alice = g_strdup_printf ("sip:alice@127.0.0.1:%d",
|
||||
local_port_alice);
|
||||
|
||||
g_object_get (fixture->origin_bob,
|
||||
"local-port", &local_port_bob,
|
||||
NULL);
|
||||
address_bob = g_strdup_printf ("sip:bob@localhost:%d",
|
||||
address_bob = g_strdup_printf ("sip:bob@127.0.0.1:%d",
|
||||
local_port_bob);
|
||||
|
||||
/* Case 1: Bob calls Alice, Alice rejects call */
|
||||
|
|
Loading…
Reference in a new issue