From e66b356f900bc9899a5506378163ffaadd4a32b5 Mon Sep 17 00:00:00 2001 From: Folker Bernitt Date: Wed, 27 Jan 2016 13:56:41 +0100 Subject: Add a login multi user functional test - Issue #576 - Extended AppTestClient with multi user support --- service/test/unit/test_application.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'service/test/unit/test_application.py') diff --git a/service/test/unit/test_application.py b/service/test/unit/test_application.py index a0eb9986..5f7f9c74 100644 --- a/service/test/unit/test_application.py +++ b/service/test/unit/test_application.py @@ -38,7 +38,7 @@ class ApplicationTest(unittest.TestCase): @patch('leap.common.events.client') @patch('pixelated.application.reactor') - @patch('pixelated.application.Services') + @patch('pixelated.application.services.Services') def test_that_start_user_agent_binds_to_tcp_port_if_no_ssl_options(self, services_mock, reactor_mock, _): # FIXME patch something closer, instead of leap.common app_mock = MagicMock() @@ -56,7 +56,7 @@ class ApplicationTest(unittest.TestCase): @patch('leap.common.events.client') @patch('pixelated.application.reactor') - @patch('pixelated.application.Services') + @patch('pixelated.application.services.Services') def test_that_start_user_agent_binds_to_ssl_if_ssl_options(self, services_mock, reactor_mock, _): # FIXME patch something closer, instead of leap.common app_mock = MagicMock() -- cgit v1.2.3