Skip to content

Commit

Permalink
test: Regex, why!
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed Mar 27, 2024
1 parent b0b8b6d commit 628587a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions chromadb/test/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def test_persistent_client_close() -> None:
col1.add(ids=["1"], documents=["test1"])
open_files = current_process.open_files()
print("OPEN FILES", open_files)
print(re.escape(temp_persist_dir))
filtered_open_files = [
file for file in open_files if re.search(re.escape(temp_persist_dir), file.path)
]
Expand Down

0 comments on commit 628587a

Please sign in to comment.