summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2014-11-25 02:36:38 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2014-11-25 02:36:38 -0800
commitd36c38c35e78ba49c3c56afe824d69d35c4bed18 (patch)
tree79163fa16c32efa1992a77d352ba11f355688ac6
parent199d6c0b8bbd62d0a378deb157b326fd2e396cc7 (diff)
downloadansible-d36c38c35e78ba49c3c56afe824d69d35c4bed18.tar.gz
Exception message changes
-rw-r--r--test/units/TestModuleUtilsDatabase.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/units/TestModuleUtilsDatabase.py b/test/units/TestModuleUtilsDatabase.py
index 635eadb42c..5278d6db5a 100644
--- a/test/units/TestModuleUtilsDatabase.py
+++ b/test/units/TestModuleUtilsDatabase.py
@@ -63,9 +63,9 @@ class TestQuotePgIdentifier(object):
('"test"."too"."many"."dots"', 'schema'): "PostgreSQL does not support schema with more than 2 dots",
('"test"."too"."many"."dots"', 'table'): "PostgreSQL does not support table with more than 3 dots",
('"test"."too"."many"."dots"."for"."column"', 'column'): "PostgreSQL does not support column with more than 4 dots",
- ('"table "invalid" double quote"', 'table'): 'User escaped identifiers must escape extra double quotes',
- ('"schema "invalid"""."table "invalid"', 'table'): 'User escaped identifiers must escape extra double quotes',
- ('"schema."table"','table'): 'User escaped identifiers must escape extra double quotes',
+ ('"table "invalid" double quote"', 'table'): 'User escaped identifiers must escape extra quotes',
+ ('"schema "invalid"""."table "invalid"', 'table'): 'User escaped identifiers must escape extra quotes',
+ ('"schema."table"','table'): 'User escaped identifiers must escape extra quotes',
('"schema".', 'table'): 'Identifier name unspecified or unquoted trailing dot',
}