Skip to content

Commit

Permalink
VS2010: Use < and > around variables in Intellisense for steps (Issue…
Browse files Browse the repository at this point in the history
… 203)
  • Loading branch information
gasparnagy committed Oct 2, 2012
1 parent 21ef299 commit 3e814e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Utils/RegexSampler.cs
Expand Up @@ -21,7 +21,7 @@ public static string GetRegexSample(string regex, string[] paramNames)

public static string GetRegexSampleInternal(string regex, string[] paramNames, bool allowEmpty, ref int currentParamIndex)
{
const string defaultParamPlaceholder = "{param}";
const string defaultParamPlaceholder = "<param>";

StringBuilder regexSample = new StringBuilder();

Expand Down Expand Up @@ -57,7 +57,7 @@ public static string GetRegexSampleInternal(string regex, string[] paramNames, b
{
var placeholder = currentParamIndex >= paramNames.Length
? defaultParamPlaceholder
: string.Format("{{{0}}}", paramNames[currentParamIndex++]);
: string.Format("<{0}>", paramNames[currentParamIndex++]);
regexSample.Append(placeholder);
lastAppendedLength = placeholder.Length;
}
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Expand Up @@ -3,7 +3,7 @@
Fixed issues:
+ VS2012: Run specflow scenarios does not work: works as for RC, but still runs all scenarios from the file (Issue 210)
+ VS2010: VS stops showing context menus if code window contains C++ code (Issue 209)

+ VS2010: Use < and > around variables in Intellisense for steps (Issue 203)

1.9.0 - 2012/08/06

Expand Down

0 comments on commit 3e814e8

Please sign in to comment.