Skip to content

Commit 458ffc3

Browse files
committed
tests: remove redundant and wrong test
1 parent cc7db7f commit 458ffc3

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

tests/fast/threading/test_module_state.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@ def test_concurrent_instance_cache_access(tmp_path):
2626
assert result[0] >= 1
2727

2828

29-
def test_concurrent_import_cache_access():
30-
for _i in range(20):
31-
with duckdb.connect(f":memory:{get_ident()}") as conn:
32-
conn.execute("CREATE TABLE test AS SELECT range as x FROM range(5)")
33-
df = conn.fetchdf()
34-
assert len(df) == 5
35-
36-
result = conn.execute("SELECT range as x FROM range(3)").fetchnumpy()
37-
assert "x" in result
38-
39-
4029
def test_environment_detection():
4130
version = duckdb.__formatted_python_version__
4231
interactive = duckdb.__interactive__

0 commit comments

Comments
 (0)