Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

query_runner -> query_results: improve logging, handle unhandled data types #6905

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
add tests
  • Loading branch information
vtatarin committed Apr 30, 2024
commit d3f8caddb2c35afa729ab52f3db217d9a0f495aa
2 changes: 1 addition & 1 deletion tests/query_runner/test_query_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def test_non_cached_query_result(self):
self.assertEqual(query_result_data, get_query_results(self.factory.user, query.id, False))


class TestFlattenFunction(BaseTestCase):
class TestFlattenFunction(TestCase):
def test_flatten_with_string(self):
self.assertEqual(flatten("hello"), "hello")

Expand Down