Revert "Update galaxy and database unit tests."

This commit is contained in:
Matt Clay 2017-02-09 15:18:13 -08:00
parent 403e9d35df
commit 256a25bdcc
2 changed files with 2 additions and 8 deletions

View file

@ -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)