Skip to content

Commit

Permalink
Merge pull request #2176 from OmniSharp/bugfix/cake
Browse files Browse the repository at this point in the history
fixed Cake test following the auto merge of #2175
  • Loading branch information
JoeRobich committed Jun 18, 2021
2 parents 580b2b6 + 5a6b772 commit adaaedb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/OmniSharp.Cake.Tests/CodeActionsV2Facts.cs
Expand Up @@ -67,7 +67,13 @@ public void Whatever()
"System.Text.RegularExpressions.Regex",
"Extract method",
"Extract local function",
"Introduce local for 'Regex.Match(\"foo\", \"bar\")'"
"Introduce local for 'Regex.Match(\"foo\", \"bar\")'",
"Introduce parameter for 'Regex.Match(\"foo\", \"bar\")' -> and update call sites directly",
"Introduce parameter for 'Regex.Match(\"foo\", \"bar\")' -> into extracted method to invoke at call sites",
"Introduce parameter for 'Regex.Match(\"foo\", \"bar\")' -> into new overload",
"Introduce parameter for all occurrences of 'Regex.Match(\"foo\", \"bar\")' -> and update call sites directly",
"Introduce parameter for all occurrences of 'Regex.Match(\"foo\", \"bar\")' -> into extracted method to invoke at call sites",
"Introduce parameter for all occurrences of 'Regex.Match(\"foo\", \"bar\")' -> into new overload"
};
Assert.Equal(expected, refactorings);
}
Expand Down

0 comments on commit adaaedb

Please sign in to comment.