Skip to content

Commit e784545

Browse files
committed
oops
1 parent 28eee4a commit e784545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/discovery/discover_unit_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def insert_test(
109109

110110
def get_tests_for_file(self, file_path: str, file_hash: str) -> list[FunctionCalledInTest] | None:
111111
cache_key = (file_path, file_hash)
112-
if cache_key in self._memory_cache:
112+
if cache_key in self.memory_cache:
113113
return self.memory_cache[cache_key]
114114

115115
self.cur.execute("SELECT * FROM discovered_tests WHERE file_path = ? AND file_hash = ?", (file_path, file_hash))

0 commit comments

Comments
 (0)