mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Revert "Update galaxy and database unit tests."
This commit is contained in:
@@ -73,8 +73,8 @@ HOW_MANY_DOTS = (
|
||||
'PostgreSQL does not support column with more than 4 dots'),
|
||||
)
|
||||
|
||||
VALID_QUOTES = sorted((test, VALID[test]) for test in VALID)
|
||||
INVALID_QUOTES = sorted((test[0], test[1], INVALID[test]) for test in INVALID)
|
||||
VALID_QUOTES = ((test, VALID[test]) for test in VALID)
|
||||
INVALID_QUOTES = ((test[0], test[1], INVALID[test]) for test in INVALID)
|
||||
|
||||
|
||||
@pytest.mark.parametrize("identifier, quoted_identifier", VALID_QUOTES)
|
||||
|
||||
Reference in New Issue
Block a user