1 parent 4ec3151 commit 8f17f7aCopy full SHA for 8f17f7a
1 file changed
tests/CodeIndex.Tests/PerformanceTests.cs
@@ -1434,10 +1434,13 @@ private static string BuildJavaScriptTypeScriptScopeLexingFixture(int statementC
1434
{
1435
builder.Append(" if (input) { total += /[{}]/.test(input) ? ")
1436
.Append(index)
1437
- .AppendLine(" : 0; }");
+ .Append(" : 0; }")
1438
+ .Append('\n');
1439
}
1440
- return builder.AppendLine(" return total;\n}").ToString();
1441
+ return builder.Append(" return total;\n}")
1442
+ .Append('\n')
1443
+ .ToString();
1444
1445
1446
private static string BuildPythonImportedTypeCallFixture(int importCount)
0 commit comments