You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a code action test with (potentially) multiple passes that specifies both CodeActionEquivalenceKey and CodeActionIndex:
For the first pass
Verify that CodeActionIndex is present, and verify the code action equivalence key at that position matches CodeActionEquivalenceKey (matches current behavior)
For subsequent passes
If no code action matches CodeActionEquivalenceKey, silently stop applying code fixes (differs from current behavior)
Otherwise, verify that the code action matching CodeActionEquivalenceKey is located at index CodeActionIndex
This change will remove the need to specify FixOne in cases where a specific code action appears once but a different code action appears in the next pass. This occurred several times in dotnet/roslyn#54310 (comment).
The text was updated successfully, but these errors were encountered:
For a code action test with (potentially) multiple passes that specifies both
CodeActionEquivalenceKey
andCodeActionIndex
:CodeActionIndex
is present, and verify the code action equivalence key at that position matchesCodeActionEquivalenceKey
(matches current behavior)CodeActionEquivalenceKey
, silently stop applying code fixes (differs from current behavior)CodeActionEquivalenceKey
is located at indexCodeActionIndex
This change will remove the need to specify
FixOne
in cases where a specific code action appears once but a different code action appears in the next pass. This occurred several times in dotnet/roslyn#54310 (comment).The text was updated successfully, but these errors were encountered: