Skip to content

Commit

Permalink
[tests] Add missing import when no auth is required
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Nov 9, 2017
1 parent f29c9c9 commit f99d9ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/src/python/qgis_wrapped_server.py
Expand Up @@ -61,7 +61,7 @@
import threading

from qgis.core import QgsApplication, QgsCoordinateTransform, QgsCoordinateReferenceSystem
from qgis.server import QgsServer, QgsServerRequest, QgsBufferServerRequest, QgsBufferServerResponse
from qgis.server import QgsServer, QgsServerRequest, QgsBufferServerRequest, QgsBufferServerResponse, QgsServerFilter

QGIS_SERVER_PORT = int(os.environ.get('QGIS_SERVER_PORT', '8081'))
QGIS_SERVER_HOST = os.environ.get('QGIS_SERVER_HOST', '127.0.0.1')
Expand All @@ -86,7 +86,6 @@


if os.environ.get('QGIS_SERVER_HTTP_BASIC_AUTH') is not None:
from qgis.server import QgsServerFilter
import base64

class HTTPBasicFilter(QgsServerFilter):
Expand Down

0 comments on commit f99d9ae

Please sign in to comment.