Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed comment base_table_good
  • Loading branch information
elpaso committed Dec 9, 2015
1 parent 96789f3 commit 94b5e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_provider_postgres.py
Expand Up @@ -120,7 +120,7 @@ def test_unique(features, num_features):
vl = QgsVectorLayer('%s srid=4326 table="qgis_test".%s (geom) sql=' % (self.dbconn, 'base_table_good'), "testgeom", "postgres")
self.assertTrue(vl.isValid())
test_unique([f for f in vl.getFeatures()], 4)
# Test base_table_bad with use estimated metadata: layer is valid
# Test base_table_good with use estimated metadata: layer is valid
vl = QgsVectorLayer('%s srid=4326 estimatedmetadata="true" table="qgis_test".%s (geom) sql=' % (self.dbconn, 'base_table_good'), "testgeom", "postgres")
self.assertTrue(vl.isValid())
test_unique([f for f in vl.getFeatures()], 4)
Expand Down

0 comments on commit 94b5e60

Please sign in to comment.