Skip to content

Commit ca80e33

Browse files
committed
remove string interpolation to fix the build
1 parent 7d45cff commit ca80e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Tests/Plugins/PluginTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ public void RunBenchmark() {
541541
_writer.WriteLine(report.ToString());
542542

543543
var benchmarkMedianMilliseconds = report.ResultStatistics.Median / 1000000;
544-
_writer.WriteLine($"{benchmark.ShortInfo} - {benchmarkMedianMilliseconds:0.00}ms");
544+
_writer.WriteLine(String.Format("{0} - {1:0.00}ms", benchmark.ShortInfo, benchmarkMedianMilliseconds));
545545
}
546546
}
547547

0 commit comments

Comments
 (0)