Skip to content

Commit

Permalink
Followup f4d08eb, update expected test result
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 11, 2018
1 parent ad4ddb1 commit db1dad5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -79,7 +79,7 @@ def check_rasterTableGdalURI(expected_dbname):
if tab.type == Table.RasterType:
raster_tables_count += 1
gdalUri = tab.gdalUri()
m = re.search(' dbname=([^ ]*) ', gdalUri)
m = re.search(' dbname=\'([^ ]*)\' ', gdalUri)
self.assertTrue(m)
actual_dbname = m.group(1)
self.assertEqual(actual_dbname, expected_dbname)
Expand Down

0 comments on commit db1dad5

Please sign in to comment.