Typo fixes.
parent
ddb8bad201
commit
59c6be534d
|
@ -38,7 +38,7 @@ class SynonymAddTestCase(BaseTestGenerator):
|
||||||
if server_con:
|
if server_con:
|
||||||
if "type" in server_con["data"]:
|
if "type" in server_con["data"]:
|
||||||
if server_con["data"]["type"] == "pg":
|
if server_con["data"]["type"] == "pg":
|
||||||
message = "Synonym are not supported by PG."
|
message = "Synonyms are not supported by PG."
|
||||||
self.skipTest(message)
|
self.skipTest(message)
|
||||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||||
self.server_id, self.db_id)
|
self.server_id, self.db_id)
|
||||||
|
|
|
@ -38,7 +38,7 @@ class SynonymDeleteTestCase(BaseTestGenerator):
|
||||||
if server_con:
|
if server_con:
|
||||||
if "type" in server_con["data"]:
|
if "type" in server_con["data"]:
|
||||||
if server_con["data"]["type"] == "pg":
|
if server_con["data"]["type"] == "pg":
|
||||||
message = "Synonym are not supported by PG."
|
message = "Synonyms are not supported by PG."
|
||||||
self.skipTest(message)
|
self.skipTest(message)
|
||||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||||
self.server_id, self.db_id)
|
self.server_id, self.db_id)
|
||||||
|
|
|
@ -38,7 +38,7 @@ class SynonymGetTestCase(BaseTestGenerator):
|
||||||
if server_con:
|
if server_con:
|
||||||
if "type" in server_con["data"]:
|
if "type" in server_con["data"]:
|
||||||
if server_con["data"]["type"] == "pg":
|
if server_con["data"]["type"] == "pg":
|
||||||
message = "Synonym are not supported by PG."
|
message = "Synonyms are not supported by PG."
|
||||||
self.skipTest(message)
|
self.skipTest(message)
|
||||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||||
self.server_id, self.db_id)
|
self.server_id, self.db_id)
|
||||||
|
|
|
@ -43,7 +43,7 @@ class SynonymPutTestCase(BaseTestGenerator):
|
||||||
if server_con:
|
if server_con:
|
||||||
if "type" in server_con["data"]:
|
if "type" in server_con["data"]:
|
||||||
if server_con["data"]["type"] == "pg":
|
if server_con["data"]["type"] == "pg":
|
||||||
message = "Synonym are not supported by PG."
|
message = "Synonyms are not supported by PG."
|
||||||
self.skipTest(message)
|
self.skipTest(message)
|
||||||
else:
|
else:
|
||||||
if server_con["data"]["version"] >= 90200:
|
if server_con["data"]["version"] >= 90200:
|
||||||
|
|
Loading…
Reference in New Issue