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 dd5122b commit 93855a9Copy full SHA for 93855a9
lua/neotest-vstest/dotnet_utils.lua
@@ -326,9 +326,8 @@ function dotnet_utils.get_solution_info(solution_path)
326
solution_discovery_semaphore.acquire()
327
328
if cached_solution then
329
- local updated_solution_info
330
- get_updated_solution_info(cached_solution)
331
- solution_cache[normalized_path] = updated_solution_info or cached_solution
+ local updated_solution_info = get_updated_solution_info(cached_solution)
+ solution_cache[normalized_path] = updated_solution_info
332
solution_discovery_semaphore.release()
333
return updated_solution_info
334
end
0 commit comments