Skip to content

Commit

Permalink
Merge pull request #105 from PhilippOesch/fix-test-matching-issue
Browse files Browse the repository at this point in the history
fix: fix test matching for xunit tests
  • Loading branch information
Issafalcon authored Jun 1, 2024
2 parents 747b689 + 670a761 commit 697c5bf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lua/neotest-dotnet/xunit/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ M.generate_test_results = function(output_file_path, tree, context_id)

if
intermediate_result.test_name == node_data.full_name
or string.find(intermediate_result.test_name, node_data.full_name, 0, true)
or intermediate_result.qualified_test_name == BuildSpecUtils.build_test_fqn(node_data.id)
then
-- For non-inlined parameterized tests, check if we already have an entry for the test.
Expand Down

0 comments on commit 697c5bf

Please sign in to comment.