Skip to content

Commit

Permalink
Merge pull request #7594 from nyalldawson/fix_test
Browse files Browse the repository at this point in the history
Followup f4d08eb, update expected test result
  • Loading branch information
m-kuhn committed Aug 11, 2018
2 parents ad4ddb1 + db1dad5 commit bcaf597
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 bcaf597

Please sign in to comment.