From c07503f5dc0272fa3bd0b5431797ce204948db6e Mon Sep 17 00:00:00 2001 From: Jonathan Springer Date: Sun, 10 Jan 2016 17:10:50 -0500 Subject: [PATCH] Fix import --- tests/functional/openlp_core_lib/test_projector_pjlink1.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/functional/openlp_core_lib/test_projector_pjlink1.py b/tests/functional/openlp_core_lib/test_projector_pjlink1.py index 4079ab9f0..92ce02acd 100644 --- a/tests/functional/openlp_core_lib/test_projector_pjlink1.py +++ b/tests/functional/openlp_core_lib/test_projector_pjlink1.py @@ -25,10 +25,9 @@ Package to test the openlp.core.lib.projector.pjlink1 package. from unittest import TestCase -from mock import MagicMock, patch - from openlp.core.lib.projector.pjlink1 import PJLink1 +from tests.functional import patch from tests.resources.projector.data import TEST_PIN, TEST_SALT, TEST_CONNECT_AUTHENTICATE pjlink_test = PJLink1(name='test', ip='127.0.0.1', pin=TEST_PIN, no_poll=True)