aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdi Feschiyan <edi.feschiyan@konsulko.com>2020-07-23 10:47:54 +0300
committerEdi Feschiyan <efeschiyan@pm.me>2020-07-23 10:47:54 +0300
commit4161635336f97638d035c0c29d64d52b7c266a11 (patch)
tree610f22bc93787685caa1fd109232d01024851164
parente26a8de1122ab930f88484d4825deeaf00c97ac5 (diff)
Fixed catching wrong TimeoutError exception thrown by the task in test_location_events
-rw-r--r--pyagl/tests/test_gps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyagl/tests/test_gps.py b/pyagl/tests/test_gps.py
index 9bcd073..db3a7a4 100644
--- a/pyagl/tests/test_gps.py
+++ b/pyagl/tests/test_gps.py
@@ -4,7 +4,7 @@ import pytest
import logging
from pyagl.services.base import AFBResponse, AFBT
from pyagl.services.gps import GPSService as GPS
-from concurrent.futures import TimeoutError
+from asyncio.exceptions import TimeoutError
pytestmark = pytest.mark.asyncio