Skip to content

Commit bef674e

Browse files
committed
Fixed compile error in IncludeFormatingTest
1 parent ae82987 commit bef674e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

IncludeToolbox/RegexUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace IncludeToolbox
88
{
9-
static class RegexUtils
9+
public static class RegexUtils
1010
{
1111
public const string CurrentFileNameKey = "$(currentFilename)";
1212

Tests/IncludeFormatingTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void Sorting()
3333
settings.SortByType = IncludeToolbox.FormatterOptionsPage.TypeSorting.None;
3434
settings.PrecedenceRegexes = new string[]
3535
{
36-
IncludeFormatter.CurrentFileNameKey,
36+
IncludeToolbox.RegexUtils.CurrentFileNameKey,
3737
".+_.+"
3838
};
3939
settings.BlankAfterRegexGroupMatch = true;

0 commit comments

Comments
 (0)