feat(trainer): make test output more obvious

This commit is contained in:
Anna 2021-03-02 12:53:19 -05:00
parent fd256722a1
commit 090c4eff3c

View File

@ -174,8 +174,12 @@ namespace NoSoliciting.Trainer {
var row = new object[1 + confuse.Count];
row[0] = name;
for (var j = 0; j < confuse.Count; j++) {
if (i == j) {
row[j + 1] = $"= {confuse[j]} =";
} else {
row[j + 1] = confuse[j];
}
}
table.AddRow(row);
}