Navigation Menu

Skip to content

Commit

Permalink
test_provider_ogr_sqlite.py: rename class to TestPyQgsOGRProviderSqli…
Browse files Browse the repository at this point in the history
…te and add it in CMakeLists.txt
  • Loading branch information
rouault committed Jun 2, 2016
1 parent efd32ff commit 3351f55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/src/python/CMakeLists.txt
Expand Up @@ -56,6 +56,7 @@ ADD_PYTHON_TEST(PyQgsNetworkContentFetcher test_qgsnetworkcontentfetcher.py)
ADD_PYTHON_TEST(PyQgsNullSymbolRenderer test_qgsnullsymbolrenderer.py)
ADD_PYTHON_TEST(PyQgsNewGeoPackageLayerDialog test_qgsnewgeopackagelayerdialog.py)
ADD_PYTHON_TEST(PyQgsOGRProviderGpkg test_provider_ogr_gpkg.py)
ADD_PYTHON_TEST(PyQgsOGRProviderSqlite test_provider_ogr_sqlite.py)
ADD_PYTHON_TEST(PyQgsPalLabelingBase test_qgspallabeling_base.py)
ADD_PYTHON_TEST(PyQgsPalLabelingCanvas test_qgspallabeling_canvas.py)
ADD_PYTHON_TEST(PyQgsPalLabelingComposer test_qgspallabeling_composer.py)
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_provider_ogr_sqlite.py
Expand Up @@ -31,7 +31,7 @@ def GDAL_COMPUTE_VERSION(maj, min, rev):
return ((maj) * 1000000 + (min) * 10000 + (rev) * 100)


class TestPyQgsOGRProviderGpkg(unittest.TestCase):
class TestPyQgsOGRProviderSqlite(unittest.TestCase):

@classmethod
def setUpClass(cls):
Expand Down

0 comments on commit 3351f55

Please sign in to comment.