Skip to content

Commit 1ece552

Browse files
committed
[processing] fix import
1 parent ff75873 commit 1ece552

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/plugins/processing/tests/GdalAlgorithmsTest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
__revision__ = ':%H$'
2727

2828
import AlgorithmsTestBase
29-
from processing.algs.gdal.ogr2ogrtopostgis import Ogr2OgrToPostGis
29+
from processing.algs.gdal.OgrToPostGis import OgrToPostGis
3030
from processing.algs.gdal.GdalUtils import GdalUtils
3131
from qgis.core import QgsProcessingContext
3232
import nose2
@@ -99,7 +99,7 @@ def _copyFile(dst):
9999
self.assertEqual(name, 'city_data.edge')
100100

101101

102-
class TestGdalOgr2OgrToPostgis(unittest.TestCase):
102+
class TestGdalOgrToPostGis(unittest.TestCase):
103103

104104
@classmethod
105105
def setUpClass(cls):
@@ -114,7 +114,7 @@ def tearDownClass(cls):
114114
# See https://issues.qgis.org/issues/15706
115115
def test_getConnectionString(self):
116116

117-
obj = Ogr2OgrToPostGis()
117+
obj = OgrToPostGis()
118118
obj.initAlgorithm({})
119119

120120
parameters = {}

0 commit comments

Comments
 (0)