Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] fix import
  • Loading branch information
alexbruy committed Oct 11, 2017
1 parent ff75873 commit 1ece552
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/processing/tests/GdalAlgorithmsTest.py
Expand Up @@ -26,7 +26,7 @@
__revision__ = ':%H$'

import AlgorithmsTestBase
from processing.algs.gdal.ogr2ogrtopostgis import Ogr2OgrToPostGis
from processing.algs.gdal.OgrToPostGis import OgrToPostGis
from processing.algs.gdal.GdalUtils import GdalUtils
from qgis.core import QgsProcessingContext
import nose2
Expand Down Expand Up @@ -99,7 +99,7 @@ def _copyFile(dst):
self.assertEqual(name, 'city_data.edge')


class TestGdalOgr2OgrToPostgis(unittest.TestCase):
class TestGdalOgrToPostGis(unittest.TestCase):

@classmethod
def setUpClass(cls):
Expand All @@ -114,7 +114,7 @@ def tearDownClass(cls):
# See https://issues.qgis.org/issues/15706
def test_getConnectionString(self):

obj = Ogr2OgrToPostGis()
obj = OgrToPostGis()
obj.initAlgorithm({})

parameters = {}
Expand Down

0 comments on commit 1ece552

Please sign in to comment.