We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1776f3 commit 6143331Copy full SHA for 6143331
tests/e2e/test_driver.py
@@ -590,19 +590,8 @@ def test_unicode(self, extra_params):
590
assert len(results) == 1 and len(results[0]) == 1
591
assert results[0][0] == unicode_str
592
593
- @pytest.mark.parametrize(
594
- "extra_params",
595
- [
596
- {},
597
- {
598
- "use_sea": True,
599
- "use_cloud_fetch": False,
600
- "enable_query_result_lz4_compression": False,
601
- },
602
- ],
603
- )
604
- def test_cancel_during_execute(self, extra_params):
605
- with self.cursor(extra_params) as cursor:
+ def test_cancel_during_execute(self):
+ with self.cursor() as cursor:
606
607
def execute_really_long_query():
608
cursor.execute(
0 commit comments