mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Typo fixes.
This commit is contained in:
parent
ddb8bad201
commit
59c6be534d
@ -38,7 +38,7 @@ class SynonymAddTestCase(BaseTestGenerator):
|
||||
if server_con:
|
||||
if "type" in server_con["data"]:
|
||||
if server_con["data"]["type"] == "pg":
|
||||
message = "Synonym are not supported by PG."
|
||||
message = "Synonyms are not supported by PG."
|
||||
self.skipTest(message)
|
||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||
self.server_id, self.db_id)
|
||||
|
@ -38,7 +38,7 @@ class SynonymDeleteTestCase(BaseTestGenerator):
|
||||
if server_con:
|
||||
if "type" in server_con["data"]:
|
||||
if server_con["data"]["type"] == "pg":
|
||||
message = "Synonym are not supported by PG."
|
||||
message = "Synonyms are not supported by PG."
|
||||
self.skipTest(message)
|
||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||
self.server_id, self.db_id)
|
||||
|
@ -38,7 +38,7 @@ class SynonymGetTestCase(BaseTestGenerator):
|
||||
if server_con:
|
||||
if "type" in server_con["data"]:
|
||||
if server_con["data"]["type"] == "pg":
|
||||
message = "Synonym are not supported by PG."
|
||||
message = "Synonyms are not supported by PG."
|
||||
self.skipTest(message)
|
||||
db_con = database_utils.connect_database(self, utils.SERVER_GROUP,
|
||||
self.server_id, self.db_id)
|
||||
|
@ -43,7 +43,7 @@ class SynonymPutTestCase(BaseTestGenerator):
|
||||
if server_con:
|
||||
if "type" in server_con["data"]:
|
||||
if server_con["data"]["type"] == "pg":
|
||||
message = "Synonym are not supported by PG."
|
||||
message = "Synonyms are not supported by PG."
|
||||
self.skipTest(message)
|
||||
else:
|
||||
if server_con["data"]["version"] >= 90200:
|
||||
|
Loading…
Reference in New Issue
Block a user