Commit 7b9a1fb9 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed cursor commit command in PostGIS backend

Thanks Bruno Renié for noticing the error.
parent fbd1df8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,6 +91,6 @@ class PostGISCreation(DatabaseCreation):
            self.connection.settings_dict["NAME"] = test_database_name
            cursor = self.connection.cursor()
            cursor.execute("CREATE EXTENSION postgis")
            cursor.commit()
            cursor.connection.commit()

        return test_database_name