Skip to content

Commit

Permalink
rearanged imports
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Oct 25, 2018
1 parent ba1fe9d commit 0a2689d
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions tests/src/python/test_qgsserver_wms_getfeatureinfo.py
@@ -1,14 +1,4 @@
# -*- coding: utf-8 -*-
from qgis.core import QgsProject
from test_qgsserver_wms import TestQgsServerWMSTestBase
from qgis.PyQt.QtCore import QSize
from qgis.testing import unittest
import json
import xml.etree.ElementTree as ET
import urllib.error
import urllib.parse
import urllib.request
import re
"""QGIS Unit tests for QgsServer GetFeatureInfo WMS.
From build dir, run: ctest -R PyQgsServerWMSGetFeatureInfo -V
Expand All @@ -32,9 +22,22 @@
# executions
os.environ['QT_HASH_SEED'] = '1'

import re
import urllib.request
import urllib.parse
import urllib.error

import xml.etree.ElementTree as ET
import json

from qgis.testing import unittest
from qgis.PyQt.QtCore import QSize

import osgeo.gdal # NOQA

from test_qgsserver_wms import TestQgsServerWMSTestBase
from qgis.core import QgsProject


class TestQgsServerWMSGetFeatureInfo(TestQgsServerWMSTestBase):

Expand Down

0 comments on commit 0a2689d

Please sign in to comment.