Skip to content

Commit 06b2035

Browse files
Refactor
1 parent e6aa61f commit 06b2035

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

generators.new/Templates.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
using HandlebarsDotNet;
55
using HandlebarsDotNet.Helpers;
66

7-
using Microsoft.CodeAnalysis.CSharp;
8-
97
using Newtonsoft.Json.Linq;
108

119
namespace Generators;
@@ -38,8 +36,8 @@ internal static Dictionary<string, object> ForCanonicalData(CanonicalData canoni
3836

3937
return new()
4038
{
41-
{ "test_cases", testCases.ToArray() },
42-
{ "test_cases_by_property", GroupTestCasesByProperty(testCases) }
39+
["test_cases"] = testCases.ToArray(),
40+
["test_cases_by_property"] = GroupTestCasesByProperty(testCases)
4341
};
4442
}
4543

0 commit comments

Comments
 (0)