Skip to content

Commit a864f44

Browse files
Another fix
1 parent 6285e7c commit a864f44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

generators.new/TestCaseTransformer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ internal static TestCaseTransformer Create(Exercise exercise) =>
2020
};
2121
}
2222

23-
class TestCaseTransformer
23+
internal class TestCaseTransformer
2424
{
2525
protected virtual TestCase UpdateTestCase(TestCase testCase) => testCase;
2626

2727
protected virtual TestCase[] AddOrRemoveTestCases(TestCase[] testCases) => testCases;
2828

29-
public static TestCase[] Transform(Exercise exercise, TestCase[] testCases) =>
29+
internal static TestCase[] Transform(Exercise exercise, TestCase[] testCases) =>
3030
TestCaseTransformerFactory.Create(exercise).AddOrRemoveTestCases(testCases)
3131
.Select(TestCaseTransformerFactory.Create(exercise).UpdateTestCase)
3232
.ToArray();

0 commit comments

Comments
 (0)