From 4416962557c9cd90c6cb22efd06f73d9155a4f8a Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Fri, 24 Jul 2015 15:31:26 +0200 Subject: [PATCH] Remove Python unit test that has no meaning. --- tools/python/unittests/test_setup.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/python/unittests/test_setup.py b/tools/python/unittests/test_setup.py index 9fcafa8b8..9dc2e0fae 100644 --- a/tools/python/unittests/test_setup.py +++ b/tools/python/unittests/test_setup.py @@ -38,16 +38,6 @@ class TestSetup: assert_equals(lc.config.get_int('sip', 'sip_tcp_port', -2), -1) assert_equals(lc.config.get_int('sip', 'sip_tls_port', -2), -1) - def test_interpret_url(self): - lc = linphone.Core.new({}, None, None) - assert lc is not None - sips_address = "sips:margaux@sip.linphone.org" - address = lc.interpret_url(sips_address) - assert address is not None - assert_equals(address.scheme, "sips") - assert_equals(address.username, "margaux") - assert_equals(address.domain, "sip.linphone.org") - def test_lpconfig_from_buffer(self): buffer = "[buffer]\ntest=ok" buffer_linebreaks = "[buffer_linebreaks]\n\n\n\r\n\n\r\ntest=ok"