Cleanup some old code that was failing CI.

pull/9/head
Joao Pedro De Almeida Pereira 2018-04-26 16:21:32 +01:00 committed by Dave Page
parent 966279c1b3
commit 201f6d359f
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ class BaseTestGenerator(unittest.TestCase):
if hasattr(self, 'skip_on_database'):
if 'data' in server_con and 'type' in server_con['data']:
if server_con['data']['type'] in self.skip_on_database:
self.skipTest('cannot run in: %s' % self.server['db_type'])
self.skipTest('cannot run in: %s' %
server_con['data']['type'])
@classmethod
def setTestServer(cls, server):