Skip to content

Commit

Permalink
fix test schema
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 authored and nyalldawson committed Jan 29, 2021
1 parent e7c48f2 commit 15ee602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/python/test_qgsproviderconnection_base.py
Expand Up @@ -149,8 +149,8 @@ def _test_operations(self, md, conn):
and capabilities & QgsAbstractDatabaseProviderConnection.DropVectorTable):

if capabilities & QgsAbstractDatabaseProviderConnection.CreateSchema:
schema = self.myNewSchema
conn.createSchema(self.myNewSchema)
schema = 'myNewSchema'
conn.createSchema(schema)
else:
schema = self.defaultSchema

Expand Down

0 comments on commit 15ee602

Please sign in to comment.