mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Revert "Update galaxy and database unit tests."
This commit is contained in:
parent
403e9d35df
commit
256a25bdcc
2 changed files with 2 additions and 8 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue