Aligning order of score and time

This commit is contained in:
dhbrett 2016-05-24 15:01:00 -07:00
Родитель e1a5ea4a91
Коммит 79923015cb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,7 @@ namespace Microsoft.Edge.A11y
//If this is the first time, write the header line with the test names
if (!File.Exists(filePath))
{
var headerLine = "buildNumber,buildIteration,buildArchitecture,buildBranch,buildDate,time,score," +
var headerLine = "buildNumber,buildIteration,buildArchitecture,buildBranch,buildDate,score,time," +
results.Select(r => r.Name + "," + r.Name + "-details").Aggregate((s1, s2) => s1 + "," + s2) + "\n";
File.WriteAllText(filePath, headerLine);
}