diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-01-17 10:32:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-01-17 10:32:16 +0000 |
commit | d3bb537b2b73788ba06bf4158f473ecc5bb556cc (patch) | |
tree | 6c1b280de128c7bf77baaa258560a1f39a4e15c7 /tests/helpers.py | |
parent | Releasing debian version 10.4.2-1. (diff) | |
download | sqlglot-d3bb537b2b73788ba06bf4158f473ecc5bb556cc.tar.xz sqlglot-d3bb537b2b73788ba06bf4158f473ecc5bb556cc.zip |
Merging upstream version 10.5.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/helpers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index 9abdaae..bab4da0 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -27,8 +27,7 @@ def assert_logger_contains(message, logger, level="error"): def load_sql_fixtures(filename): with open(os.path.join(FIXTURES_DIR, filename), encoding="utf-8") as f: - for sql in _filter_comments(f.read()).splitlines(): - yield sql + yield from _filter_comments(f.read()).splitlines() def load_sql_fixture_pairs(filename): |