Skip to content

Commit

Permalink
fix: always recreate lookup for file (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil authored Jul 13, 2024
1 parent b26c220 commit 01792c4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lua/neotest-golang/features/testify/lookup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ local function create_lookup_manager()
return lookup_table
end,
create = function(file_path)
if not lookup_table[file_path] then
lookup_table[file_path] = M.generate_data(file_path)
end
lookup_table[file_path] = M.generate_data(file_path)
return lookup_table
end,
get = function()
Expand Down

0 comments on commit 01792c4

Please sign in to comment.